Checks if type is a guid type.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static bool IsGuidType(
	this Type type
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function IsGuidType ( 
	type As Type
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool IsGuidType(
	Type^ type
)
F#
static member IsGuidType : 
        type : Type -> bool 

Parameters

type
Type: System..::..Type
Type to check

Return Value

Type: Boolean
True if type is a guid type, False otherwise

Usage 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).

See Also