PClExtensionUnset Method
Unsets all flags set in flags in value.
Namespace: FolkerKinzel.VCards.ExtensionsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.0.1+a91cc3f0fd39aeb548e16006a60ca9dd10a304a2
public static PCl? Unset(
this PCl? value,
PCl flags
)
<ExtensionAttribute>
Public Shared Function Unset (
value As PCl?,
flags As PCl
) As PCl?
public:
[ExtensionAttribute]
static Nullable<PCl> Unset(
Nullable<PCl> value,
PCl flags
)
[<ExtensionAttribute>]
static member Unset :
value : Nullable<PCl> *
flags : PCl -> Nullable<PCl>
- value NullablePCl
- The value from which the flags set in flags are removed.
- flags PCl
- A single PCl value or a combination
of several PCl values.
NullablePClA value from which all the flags set in
flags are
removed, respectively
null if all flags are unset. If
value is
null,
null is returned.In Visual Basic and C#, you can call this method as an instance method on any object of type
NullablePCl. 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).