Class PrimitivesBoolExtensions
Provides extension methods for working with nullable boolean values.
Inherited Members
Namespace: Coree.NETStandard.Extensions.Primitives.Bool
Assembly: Coree.NETStandard.dll
Syntax
public static class PrimitivesBoolExtensions
Methods
| Edit this page View SourceIsFalse(bool?)
Checks if the nullable boolean value is false.
Declaration
public static bool IsFalse(this bool? nullableBool)
Parameters
Type | Name | Description |
---|---|---|
bool? | nullableBool | The nullable boolean value. |
Returns
Type | Description |
---|---|
bool | True if the value is false; otherwise, false. |
IsNull(bool?)
Checks if the nullable boolean value is null.
Declaration
public static bool IsNull(this bool? nullableBool)
Parameters
Type | Name | Description |
---|---|---|
bool? | nullableBool | The nullable boolean value. |
Returns
Type | Description |
---|---|
bool | True if the value is null; otherwise, false. |
IsTrue(bool?)
Checks if the nullable boolean value is true.
Declaration
public static bool IsTrue(this bool? nullableBool)
Parameters
Type | Name | Description |
---|---|---|
bool? | nullableBool | The nullable boolean value. |
Returns
Type | Description |
---|---|
bool | True if the value is true; otherwise, false. |