VB.Net by API/System.Diagnostics/Conditional — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:50, 26 мая 2010
mark Conditional
Imports System
Imports System.Diagnostics
#Const DEBUG_LIST_CUSTOMERS = True
"#Const DEBUG_LIST_EMPLOYEES = True
public class Test
public Shared Sub Main
ListCustomers()
ListEmployees()
End Sub
<Conditional("DEBUG_LIST_CUSTOMERS")> _
Private Shared Sub ListCustomers()
Console.WriteLine("ListCustomers")
End Sub
<Conditional("DEBUG_LIST_EMPLOYEES")> _
Private Shared Sub ListEmployees()
Console.WriteLine("ListEmployees")
End Sub
End class