#if NET20 || NET30 namespace System { /// Encapsulates a method that has one parameter and returns a value of the type specified by the parameter. /// The type of the parameter of the method that this delegate encapsulates. /// The type of the return value of the method that this delegate encapsulates. /// The parameter of the method that this delegate encapsulates. /// The return value of the method that this delegate encapsulates. #if NETCF public delegate TResult Func(T arg); #else public delegate TResult Func(T arg); #endif } #endif