VB.Net Tutorial/Attributes/Conditional Attribute — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 16:40, 26 мая 2010
Conditional Attribute
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
ListCustomers