Click here to Skip to main content
15,909,896 members
Home / Discussions / C#
   

C#

 
GeneralRe: a little help on "most used" codes ! Pin
jschell4-Apr-11 8:11
jschell4-Apr-11 8:11 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_4-Apr-11 18:40
_Q12_4-Apr-11 18:40 
GeneralRe: a little help on "most used" codes ! Pin
Michael900017-Apr-11 21:02
Michael900017-Apr-11 21:02 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_18-Apr-11 0:06
_Q12_18-Apr-11 0:06 
GeneralRe: a little help on "most used" codes ! Pin
Michael900018-Apr-11 12:16
Michael900018-Apr-11 12:16 
AnswerRe: a little help on "most used" codes ! Pin
PIEBALDconsult1-Apr-11 14:39
mvePIEBALDconsult1-Apr-11 14:39 
JokeRe: a little help on "most used" codes ! Pin
loyal ginger1-Apr-11 17:51
loyal ginger1-Apr-11 17:51 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_1-Apr-11 20:52
_Q12_1-Apr-11 20:52 
Your response is a little cryptic but i will adapt it to my needs.
The ASCII table(like this one: http://www.hobbyprojects.com/ascii-table/ascii-table.html[^]) is a very good way to look at simplest forms of code storage. And yes, is a very good way visually to remember tricks and hints, special code usage, or even the basic usage of methods and rules in general. Why I could not think of that? Smile | :) thanks man- you give me a nice idea about how to implement it.

1-the simplest form of what is to store is like this:
[this is a pure example -I don't want critics about this code here!]
//IndexOf usage with string; Benchmark result String version: 1154 ms
int i = s.IndexOf("a"); //Finds first "a" string in s.
//IndexOf usage with char; Benchmark result Char version: 172 ms
int i = s.IndexOf('a'); //Finds first 'a' char in s.
2-the complex form are entire programs, objects,methods, even controls.
(You made them for your simplification in coding for later uses, as reminders or as core codes.)

The "VT101 user guide" is more complicated to achieve(programatically). It is a treeview at core, and the page you must edit(add new codes) is a bit complex and require a lot of attention and patience. I need something easy to edit and then something easy to view/search into.

Both your suggestions are great. Thanks. But I didn't try your "like ASCII" model implementation. If you have an example of your "like ASCII" model to inspire from, it will be very nice. I need to see others how they did it. Maybe I can come with something useful to what I see.
Thank you again.
AnswerRe: a little help on "most used" codes ! Pin
Luc Pattyn1-Apr-11 16:31
sitebuilderLuc Pattyn1-Apr-11 16:31 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_1-Apr-11 21:12
_Q12_1-Apr-11 21:12 
AnswerRe: a little help on "most used" codes ! Pin
dan!sh 1-Apr-11 21:19
professional dan!sh 1-Apr-11 21:19 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_1-Apr-11 21:36
_Q12_1-Apr-11 21:36 
GeneralRe: a little help on "most used" codes ! Pin
dan!sh 1-Apr-11 21:49
professional dan!sh 1-Apr-11 21:49 
AnswerRe: a little help on "most used" codes ! Pin
Eddy Vluggen2-Apr-11 0:16
professionalEddy Vluggen2-Apr-11 0:16 
AnswerRe: a little help on "most used" codes ! Pin
Abhinav S3-Apr-11 7:21
Abhinav S3-Apr-11 7:21 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_3-Apr-11 7:58
_Q12_3-Apr-11 7:58 
GeneralRe: a little help on "most used" codes ! Pin
RobScripta4-Apr-11 1:20
professionalRobScripta4-Apr-11 1:20 
GeneralRe: a little help on "most used" codes ! Pin
_Q12_5-Apr-11 15:04
_Q12_5-Apr-11 15:04 
QuestionXML To Grid Pin
Kevin Marois1-Apr-11 7:30
professionalKevin Marois1-Apr-11 7:30 
AnswerRe: XML To Grid Pin
Not Active1-Apr-11 7:34
mentorNot Active1-Apr-11 7:34 
GeneralRe: XML To Grid Pin
Kevin Marois1-Apr-11 7:35
professionalKevin Marois1-Apr-11 7:35 
GeneralRe: XML To Grid Pin
Not Active1-Apr-11 7:53
mentorNot Active1-Apr-11 7:53 
GeneralRe: XML To Grid Pin
Kevin Marois1-Apr-11 8:10
professionalKevin Marois1-Apr-11 8:10 
GeneralRe: XML To Grid Pin
Not Active1-Apr-11 8:14
mentorNot Active1-Apr-11 8:14 
GeneralRe: XML To Grid Pin
SledgeHammer011-Apr-11 8:16
SledgeHammer011-Apr-11 8:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.