#if NET20 || NET30 namespace System { /// Encapsulates a method that has two parameters and returns a value of the type specified by the parameter. /// The type of the first parameter of the method that this delegate encapsulates. /// The type of the second parameter of the method that this delegate encapsulates. /// The type of the return value of the method that this delegate encapsulates. /// The first parameter of the method that this delegate encapsulates. /// The second parameter of the method that this delegate encapsulates. /// The return value of the method that this delegate encapsulates. #if NETCF public delegate TResult Func(T1 arg1, T2 arg2); #else public delegate TResult Func(T1 arg1, T2 arg2); #endif } #endif