string C# with Example



string C# with Example

string is an alias to the .NET datatype System.String, which allows text (sequences of characters) to be stored. 
Notation: 
string a = "Hello"; 
var b = "world"; 
 

var f = new string(new []{ 'h', 'i', '!' }); // hi! 
Each character in the string is encoded in UTF-16, which means that each character will require a minimum 2 bytes 
of storage space. 

0 Comment's

Comment Form

Submit Comment