public class Introduce
{
public class ME
{
public string Name { get; private set; } = "박현민";
public string Major { get; private set; } = "게임 서버";
}
public static void Main()
{
var me = new ME();
Console.WriteLine($"안녕하세요. {me.Major} 개발자 {me.Name}입니다!");
}
}
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


