C# Basic Tutorial (Strings)
Strings 문자열 연결 및 길이 string fullName = firstName + " " + lastName; Console.WriteLine($"fullName = {fullName}, " + $"length = {fullName.Length}"); 소문자로 변경 Console.WriteLine($"Lower fullName = {fullName.ToLower()}, " + $"length = {fullName.Length}"); 대문자로 변경 Console.WriteLine($"Upper fullName = {fullName.ToUpper()}, " + $"length = {fullName.Length}"); 문자열 분리 Console.WriteLine($"firstName = {fullNam..
2022.01.06