Click here to Skip to main content
15,916,945 members
Home / Discussions / C#
   

C#

 
AnswerRe: reading from scanner Pin
Thomas Stockwell20-Apr-07 15:15
professionalThomas Stockwell20-Apr-07 15:15 
GeneralRe: reading from scanner Pin
haseeb_saeed20-Apr-07 22:06
haseeb_saeed20-Apr-07 22:06 
GeneralRe: reading from scanner Pin
Thomas Stockwell21-Apr-07 3:07
professionalThomas Stockwell21-Apr-07 3:07 
Questionbitmaps and com interop Pin
arcticbrew20-Apr-07 7:39
arcticbrew20-Apr-07 7:39 
Questionhow to clear this error in C#.net windows application form? Pin
sathyan_829420-Apr-07 6:01
sathyan_829420-Apr-07 6:01 
AnswerRe: how to clear this error in C#.net windows application form? Pin
kubben20-Apr-07 6:11
kubben20-Apr-07 6:11 
AnswerRe: how to clear this error in C#.net windows application form? Pin
Vega0220-Apr-07 8:52
Vega0220-Apr-07 8:52 
QuestionWhat do i need to do in order to have a ok button to close a form? Pin
sinosoidal20-Apr-07 5:58
sinosoidal20-Apr-07 5:58 
AnswerRe: What do i need to do in order to have a ok button to close a form? Pin
Guffa20-Apr-07 6:10
Guffa20-Apr-07 6:10 
GeneralRe: What do i need to do in order to have a ok button to close a form? Pin
sinosoidal22-Apr-07 23:45
sinosoidal22-Apr-07 23:45 
AnswerRe: What do i need to do in order to have a ok button to close a form? Pin
sthotakura20-Apr-07 7:49
sthotakura20-Apr-07 7:49 
GeneralRe: What do i need to do in order to have a ok button to close a form? Pin
sinosoidal23-Apr-07 0:26
sinosoidal23-Apr-07 0:26 
AnswerRe: What do i need to do in order to have a ok button to close a form? Pin
Keshav V. Kamat22-Apr-07 23:10
Keshav V. Kamat22-Apr-07 23:10 
GeneralRe: What do i need to do in order to have a ok button to close a form? Pin
sinosoidal23-Apr-07 0:21
sinosoidal23-Apr-07 0:21 
QuestionReflection for COM objects Pin
El'Cachubrey20-Apr-07 5:27
El'Cachubrey20-Apr-07 5:27 
QuestionIs there a way to capture a bitmap signature? Pin
daddion20-Apr-07 5:05
daddion20-Apr-07 5:05 
AnswerRe: Is there a way to capture a bitmap signature? Pin
Dave Kreskowiak20-Apr-07 6:24
mveDave Kreskowiak20-Apr-07 6:24 
AnswerRe: Is there a way to capture a bitmap signature? Pin
Judah Gabriel Himango20-Apr-07 10:17
sponsorJudah Gabriel Himango20-Apr-07 10:17 
GeneralRe: Is there a way to capture a bitmap signature? Pin
Dave Kreskowiak20-Apr-07 10:38
mveDave Kreskowiak20-Apr-07 10:38 
Questionstring vs String functions Pin
senylity20-Apr-07 4:50
senylity20-Apr-07 4:50 
AnswerRe: string vs String functions Pin
Daniel Grunwald20-Apr-07 4:55
Daniel Grunwald20-Apr-07 4:55 
string is a C# keyword that is an alias to System.String.
If you have "using System;" in your file and you don't have any other class named String, then String (the class) and string (the C# keyword) are equivalent. Otherwise String may refer to your own String class, while string always refers to the built-in string class.
Another difference: you may use String as a name for local variables (if you like to confuse people reading your code), but string is reserved.

But normally using string or String makes no difference, both compile to the same IL.



GeneralRe: string vs String functions Pin
Aaron VanWieren20-Apr-07 9:16
Aaron VanWieren20-Apr-07 9:16 
GeneralRe: string vs String functions Pin
Luc Pattyn20-Apr-07 12:09
sitebuilderLuc Pattyn20-Apr-07 12:09 
AnswerRe: string vs String functions Pin
Scott Dorman20-Apr-07 16:19
professionalScott Dorman20-Apr-07 16:19 
AnswerRe: string vs String functions Pin
Keshav V. Kamat22-Apr-07 23:12
Keshav V. Kamat22-Apr-07 23:12 

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.