OpenTypeMethods.AndAlso Method
Performs a logical and operation between two expressions.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function AndAlso ( _
left As Object, _
right As Object _
) As Object
'Usage
Dim left As Object
Dim right As Object
Dim returnValue As Object
returnValue = OpenTypeMethods.AndAlso(left, _
right)
public static Object AndAlso(
Object left,
Object right
)
public:
static Object^ AndAlso(
Object^ left,
Object^ right
)
static member AndAlso :
left:Object *
right:Object -> Object
public static function AndAlso(
left : Object,
right : Object
) : Object
Parameters
- left
Type: System.Object
Left value.
- right
Type: System.Object
Right value.
Return Value
Type: System.Object
The result of the logical and operation.