-- there is no difference between string and String (capital S) in C#
System.String
System.String
-- String as char Array
H
e
l
l
o
-- Special Characters - double quotes
This is a "string" in C#.
-- Special Characters - Escape Char
This is a "string" in C#.
xyzdef\rabc
\\mypc\ shared\project
-- Special Characters - Escape Sequence
xyzdef\rabc
\\mypc\shared\project
test@test.com
-- Composite formatting
Hello, Mark! Today is Sunday, it's 11:31 now.