Aracılığıyla paylaş


Func ve Action Genel Delegeleri için Varyansı Kullanma (C#)

Bu örnekler, yöntemlerin yeniden kullanılmasını sağlamak ve kodunuzda daha fazla esneklik sunmak amacıyla Func ve Action genel temsilcilerde kovaryans ve kontravaryansı nasıl kullanacağınızı gösterir.

Kovaryans ve karşıt varyans hakkında daha fazla bilgi için bakınız Temsilcilerde Varyans (C#).

Kovaryant Tür Parametreleriyle Temsilcileri Kullanma

Aşağıdaki örnek, genel Func temsilcilerde kovaryans desteğinin avantajlarını göstermektedir. FindByTitle yöntemi, String türünde bir parametre alır ve Employee türünde bir nesne döndürür. Ancak, Func<String, Person>Employee'den devraldığı için Person temsilciye bu yöntemi atayabilirsiniz.

// Simple hierarchy of classes.  
public class Person { }  
public class Employee : Person { }  
class Program  
{  
    static Employee FindByTitle(String title)  
    {  
        // This is a stub for a method that returns  
        // an employee that has the specified title.  
        return new Employee();  
    }  
  
    static void Test()  
    {  
        // Create an instance of the delegate without using variance.  
        Func<String, Employee> findEmployee = FindByTitle;  
  
        // The delegate expects a method to return Person,  
        // but you can assign it a method that returns Employee.  
        Func<String, Person> findPerson = FindByTitle;  
  
        // You can also assign a delegate
        // that returns a more derived type
        // to a delegate that returns a less derived type.  
        findPerson = findEmployee;  
  
    }  
}  

Delegeleri Kontravaryant Tür Parametreleriyle Kullanma

Aşağıdaki örnek, genel Action temsilcilerde değişken karşıtı desteğin avantajlarını göstermektedir. AddToContacts yöntemi, Person türünde bir parametre alır. Ancak, Action<Employee>Employee'den devraldığı için Person temsilciye bu yöntemi atayabilirsiniz.

public class Person { }  
public class Employee : Person { }  
class Program  
{  
    static void AddToContacts(Person person)  
    {  
        // This method adds a Person object  
        // to a contact list.  
    }  
  
    static void Test()  
    {  
        // Create an instance of the delegate without using variance.  
        Action<Person> addPersonToContacts = AddToContacts;  
  
        // The Action delegate expects
        // a method that has an Employee parameter,  
        // but you can assign it a method that has a Person parameter  
        // because Employee derives from Person.  
        Action<Employee> addEmployeeToContacts = AddToContacts;  
  
        // You can also assign a delegate
        // that accepts a less derived parameter to a delegate
        // that accepts a more derived parameter.  
        addEmployeeToContacts = addPersonToContacts;  
    }  
}  

Ayrıca bakınız