using System; public sealed class App { static void Main() { // The line below causes the compiler to issue a warning: // 'App.SomeDeprecatedMethod()' is obsolete: 'Do not call this method.' SomeDeprecatedMethod(); } // The method below is marked with the ObsoleteAttribute. // Any code that attempts to call this method will get a warning. [Obsolete("Do not call this method.")] private static void SomeDeprecatedMethod() { }
}
자동 시작하는 프로그램 (0) | 2018.09.06 |
---|---|
SubClass 혹은 BaseClass 체크하기 ( System.Type ) (0) | 2018.09.06 |
LiteDB - .Net, IOS, Android, Windows Phone (0) | 2018.07.04 |
대용량 텍스트 파일 읽기 (0) | 2018.07.04 |
C# 동적메모리 할당 (0) | 2018.07.04 |