Expression::TryGetFuncType Method (array<Type^>^, Type^%)
.NET Framework (current version)
Creates a Type object that represents a generic System.Func delegate type that has specific type arguments. The last type argument specifies the return type of the created delegate.
Assembly: System.Core (in System.Core.dll)
public: static bool TryGetFuncType( array<Type^>^ typeArgs, [OutAttribute] Type^% funcType )
Parameters
- typeArgs
-
Type:
array<System::Type^>^
An array of Type objects that specify the type arguments for the System.Func delegate type.
- funcType
-
Type:
System::Type^%
When this method returns, contains the generic System.Func delegate type that has specific type arguments. Contains null if there is no generic System.Func delegate that matches the typeArgs.This parameter is passed uninitialized.
Return Value
Type: System::Booleantrue if generic System.Func delegate type was created for specific typeArgs; false otherwise.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: