주석(comment)

 

 

 

 

 

Ø단일라인 주석: //

stmt1;  // 이건 주석입니다.

stmt2;

Ø다중라인 주석: /*   */

stmt1;  /* 여기서 부터 주석입니다.

stmt2;  여기도 계속 주석

여기까지 주석*/  stmt3;

ØXML 주석: ///
l컴파일 할 때, XML 문서를 생성하라고 명령할 수 있다. XML 문서를 생성할 때 사용되는 부분을 주석으로 처리할 수 있다.
l)

  /// <summary>

  /// Summary description for Class1.

  /// </summary>

Ex)c:\>csc CommandXML.cs /doc:CommandXML.xml !!

 

 

 

 

+ Recent posts