Click here to Skip to main content
15,893,622 members
Home / Discussions / C#
   

C#

 
GeneralRe: A question about calling an unmanaged dll Pin
Micke B26-Apr-05 2:37
Micke B26-Apr-05 2:37 
GeneralRe: A question about calling an unmanaged dll Pin
Paul Largent15-Jun-05 7:16
Paul Largent15-Jun-05 7:16 
GeneralFull screen issue Pin
Lalit N Dubey21-Apr-05 23:19
Lalit N Dubey21-Apr-05 23:19 
GeneralRe: Full screen issue Pin
Anonymous22-Apr-05 2:01
Anonymous22-Apr-05 2:01 
GeneralWhy string is reference data type. Pin
Member 180659621-Apr-05 21:48
Member 180659621-Apr-05 21:48 
GeneralRe: Why string is reference data type. Pin
S. Senthil Kumar21-Apr-05 22:24
S. Senthil Kumar21-Apr-05 22:24 
GeneralRe: Why string is reference data type. Pin
Colin Angus Mackay21-Apr-05 23:58
Colin Angus Mackay21-Apr-05 23:58 
GeneralRe: Why string is reference data type. Pin
vims22-Apr-05 0:08
vims22-Apr-05 0:08 
System.String is a reference type and not a value type, which means each string is allocated on the heap and not the stack. System.String is peculiar in that it has a shortcut keyword associated with it (string), which is a common practice with primitive value types - System.Int32 (int), System.Char (char) etc. String references also do not require the new keyword to allocate an instance, the following line of code will allocate space on the heap, fill it with string data and assign the reference to the variable:

A string is a sequential collection of Unicode characters, typically used to represent text, while a String is a sequential collection of System.Char objects that represents a string. The value of the String is the content of the sequential collection, and the value is immutable.

The ANSI string class implements a first-class character string data type that avoids many problems associated with simple character arrays

vimsy
QuestionFileStream Performance ? Pin
CiNN21-Apr-05 21:04
CiNN21-Apr-05 21:04 
Generalzooming in winforms. Pin
sreejith ss nair21-Apr-05 20:18
sreejith ss nair21-Apr-05 20:18 
GeneralLaplacian pyramids Pin
Christian Graus21-Apr-05 19:25
protectorChristian Graus21-Apr-05 19:25 
GeneralRe: Laplacian pyramids Pin
John Fisher22-Apr-05 8:27
John Fisher22-Apr-05 8:27 
QuestionHow to play repeadly the media file in full screen mode Pin
Lalit N Dubey21-Apr-05 19:20
Lalit N Dubey21-Apr-05 19:20 
AnswerRe: How to play repeadly the media file in full screen mode Pin
Christian Graus21-Apr-05 19:23
protectorChristian Graus21-Apr-05 19:23 
GeneralRe: How to play repeadly the media file in full screen mode Pin
Lalit N Dubey21-Apr-05 23:17
Lalit N Dubey21-Apr-05 23:17 
GeneralRe: How to play repeadly the media file in full screen mode Pin
Christian in a nice hotel in Singapore24-Apr-05 0:23
sussChristian in a nice hotel in Singapore24-Apr-05 0:23 
GeneralCasting multi dimensional arrays Pin
Esmo200021-Apr-05 19:14
Esmo200021-Apr-05 19:14 
GeneralRe: Casting multi dimensional arrays Pin
Christian Graus21-Apr-05 19:23
protectorChristian Graus21-Apr-05 19:23 
GeneralRe: Casting multi dimensional arrays Pin
Esmo200022-Apr-05 1:41
Esmo200022-Apr-05 1:41 
GeneralRe: Casting multi dimensional arrays Pin
S. Senthil Kumar22-Apr-05 2:44
S. Senthil Kumar22-Apr-05 2:44 
GeneralWeird class cast issue Pin
serious-sam21-Apr-05 17:18
serious-sam21-Apr-05 17:18 
GeneralRe: Weird class cast issue Pin
Christian Graus21-Apr-05 17:38
protectorChristian Graus21-Apr-05 17:38 
GeneralRe: Weird class cast issue Pin
serious-sam21-Apr-05 17:51
serious-sam21-Apr-05 17:51 
QuestionHow to Escape the ";" Pin
CSharpBala21-Apr-05 17:14
CSharpBala21-Apr-05 17:14 
AnswerRe: How to Escape the ";" Pin
Ashok Dhamija21-Apr-05 18:05
Ashok Dhamija21-Apr-05 18:05 

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.