https://www.youtube.com/watch?v=VPCVleg-RiM&list=PLO56HZSjrPTB4NxAsEP8HRk6YKBDLbp7m&index=56
using System;
using static System.Console;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace testProject
{
public class Person
{
private string name = "문민승";
private const int m_age = 21;
private readonly string NickName = "mms";
private string[] hobby = { "work out", "singing" };
public void ShowProfile() => WriteLine($"{name} - {string.Join(", ", hobby)}");
}
class Program
{
// 상수, 전역 변수
private static string message = "안녕하세요.";
static void Main(string[] args)
{
Person person = new Person();
person.ShowProfile();
}
}
}