언어/[C#]
[C#] C# 주석 작성하기 (한 줄 주석, 여러 줄 주석)
조랩
2023. 2. 25. 20:39
using System;
namespace MyFirstProgram
{
internal class Program
{
static void Main(string[] args)
{
// this is a single line comment
/*
* this
* is
* a
* multiline
* comment
*/
// 이것은 한 줄 주석
/*
* 이것
* 은
* 여러 줄
* 주석
*/
}
}
}
728x90