[This is preliminary documentation and is subject to change.]
Returns the full name of the type optionally prefixed with verbatim id specifier '@'.
The generic arguments ar expanded into their full names i.e.
List'1[System.Object] -> System.Collections.Generic.List<System.Object>
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static string FullNameWithExpandedGenericArgs(
this Type type,
bool verbatimPrefix = true
)
public static string FullNameWithExpandedGenericArgs(
this Type type,
bool verbatimPrefix = true
)
<ExtensionAttribute>
Public Shared Function FullNameWithExpandedGenericArgs (
type As Type,
Optional verbatimPrefix As Boolean = true
) As String
<ExtensionAttribute>
Public Shared Function FullNameWithExpandedGenericArgs (
type As Type,
Optional verbatimPrefix As Boolean = true
) As String
public:
[ExtensionAttribute]
static String^ FullNameWithExpandedGenericArgs(
Type^ type,
bool verbatimPrefix = true
)
public:
[ExtensionAttribute]
static String^ FullNameWithExpandedGenericArgs(
Type^ type,
bool verbatimPrefix = true
)
static member FullNameWithExpandedGenericArgs :
type : Type *
?verbatimPrefix : bool
(* Defaults:
let _verbatimPrefix = defaultArg verbatimPrefix true
*)
-> string
static member FullNameWithExpandedGenericArgs :
type : Type *
?verbatimPrefix : bool
(* Defaults:
let _verbatimPrefix = defaultArg verbatimPrefix true
*)
-> string
Return Value
Type:
StringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).