Notice
Recent Posts
Recent Comments
Link
목록문서자동화 (1)
개발자-H 입니다.
[문서 자동화] 주석 메타 정보 얻기
소스 코드의 주석을 활용하여 자동으로 문서화 할수 있다. /// /// 책 모델 /// public class Book { /// /// 생성 일자 /// public DateTime CreatedTime { get; set; } /// /// 책 종류 /// public BookType Type { get; set; } /// /// 책 이름 /// public string Title { get; set; } /// /// 책을 생성합니다. /// /// 생성 일자 /// 종류 /// 이름 /// /// var b = new Book(DateTime.Now, BookType.Game, "Diablo II"); /// public Book(DateTime createdTime, BookType type,..
개발
2022. 3. 21. 00:20