Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Search This Blog
Monday, November 4, 2013
String Type C#
C#
>
Types
>
String
String
type
represents a sequence of Unicode characters and is a reference type.
Methods
StartWith
Example:
string
a =
"Hello"
;
string
b =
" world"
;
// Append ! to contents of b
b +=
"!"
;
MessageBox
.Show (a + b);
Newer Post
Older Post
Home