Answers for "c# string characters"

C#
3

c# char

var chars = new[]
{
    'j',
    'u006A',
    'x006A',
    (char)106,
};
Console.WriteLine(string.Join(" ", chars));  // output: j j j j
Posted by: Guest on July-11-2020
-1

C# strings

string s1 = "A string is more ";
string s2 = "than the sum of its chars.";

// Concatenate s1 and s2. This actually creates a new
// string object and stores it in s1, releasing the
// reference to the original object.
s1 += s2;
Posted by: Guest on May-28-2021

Code answers related to "c# string characters"

C# Answers by Framework

Browse Popular Code Answers by Language