|
BroTypeExtensionsIsValueType Method |
Determines if
BroType is a value-type (from perspective of BroccoliSharp library not Broccoli API).
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public static bool IsValueType(
this BroType type
)
<ExtensionAttribute>
Public Shared Function IsValueType (
type As BroType
) As Boolean
static member IsValueType :
type : BroType -> bool
/** @attribute ExtensionAttribute */
public static boolean IsValueType(
BroType type
)
BroccoliSharp.BroTypeExtensions.IsValueType = function(type);
Parameters
- type
- Type: BroccoliSharpBroType
Bro type to test.
Return Value
Type:
Booleantrue if Bro
type is a value-type; otherwise,
false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
BroType. 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