RosettaCodeData/Task/String-length/C-sharp/string-length-2.cs

5 lines
99 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using System.Text;
string s = "Hello, world!";
int byteLength = Encoding.Unicode.GetByteCount(s);