반응형
using System;
class Program
{
static void Main()
{
Console.WriteLine("Hello {0}", UserName);
Console.WriteLine("Hello " + UserName);
}
}
반응형
'Language > C#' 카테고리의 다른 글
C# - 타입 과 타입 멤버들 (0) | 2021.01.21 |
---|---|
C# - 메서드, 메소드 (Methods) (0) | 2021.01.15 |
C# - 추상 클래스와 인터페이스 차이, 다중 상속 (0) | 2021.01.15 |
C# - 데이터 변환(convert, parse,tryparse), 어레이(Array), 주석(Comments), 이프(If),논리 연산자(Logical Operator), Switch , While, Do while Loop statement (0) | 2021.01.05 |
C# - 내장 타입 Built-in types (0) | 2021.01.05 |