본문 바로가기

분류 전체보기590

Trace Class .NET Framework Class Library Trace Class Provides a set of methods and properties that help you trace the execution of your code. This class cannot be inherited. Namespace: System.Diagnostics Assembly: System (in system.dll) Syntax Visual Basic (Declaration) Public NotInheritable Class Trace Visual Basic (Usage) Dim instance As Trace C# public sealed class Trace C++ public ref class Trace sealed.. 2009. 3. 31.
Debug Class .NET Framework Class Library Debug Class Provides a set of methods and properties that help debug your code. This class cannot be inherited. Namespace: System.Diagnostics Assembly: System (in system.dll) Syntax Visual Basic (Declaration) Public NotInheritable Class Debug Visual Basic (Usage) Dim instance As Debug C# public sealed class Debug C++ public ref class Debug sealed J# public final clas.. 2009. 3. 31.
CLR Debugger CLR Debugger (DbgCLR.exe) The Microsoft CLR Debugger (DbgCLR.exe) provides debugging services with a graphical interface to help application developers find and fix bugs in programs that target the common language runtime. The CLR Debugger, and the accompanying documentation, is based on work being done for the Microsoft Visual Studio 2005 Debugger. As a result, the documentation refers mostly t.. 2009. 3. 31.
DateTime Library 원문 : http://www.codeproject.com/KB/cs/csdatetimelibrary.aspx using System; namespace Concepts2Code.Utilities { /// /// Common DateTime Methods. /// /// public enum Quarter { First = 1, Second = 2, Third = 3, Fourth = 4 } public enum Month { January = 1, February = 2, March = 3, April = 4, May = 5, June = 6, July = 7, August = 8, September = 9, October = 10, November = 11, December = 12 } public .. 2009. 3. 16.