VB.Net Tutorial/Attributes/Conditional Attribute — различия между версиями
| Admin (обсуждение | вклад) м (1 версия) | Admin (обсуждение | вклад)  м (1 версия) | 
| (нет различий) | |
Текущая версия на 12:53, 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 classListCustomers
