|
BroTypeExtensionsIsEnumerableType Method |
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public static bool IsEnumerableType(
this BroType type
)
<ExtensionAttribute>
Public Shared Function IsEnumerableType (
type As BroType
) As Boolean
static member IsEnumerableType :
type : BroType -> bool
/** @attribute ExtensionAttribute */
public static boolean IsEnumerableType(
BroType type
)
BroccoliSharp.BroTypeExtensions.IsEnumerableType = function(type);
Parameters
- type
- Type: BroccoliSharpBroType
Bro type to test.
Return Value
Type:
Booleantrue if Bro
type is an
IEnumerable 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