Table of Contents

Class Result.BooleanResult

Namespace
xFunc.Maths.Results
Assembly
xFunc.Maths.dll

Represents the boolean result.

public sealed class Result.BooleanResult : Result
Inheritance
Result.BooleanResult
Inherited Members

Constructors

BooleanResult(bool)

Initializes a new instance of the Result.BooleanResult class.

public BooleanResult(bool boolean)

Parameters

boolean bool

The boolean value.

Properties

Bool

Gets the boolean value.

public override bool Bool { get; }

Property Value

bool

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

Operators

implicit operator bool(BooleanResult)

public static implicit operator bool(Result.BooleanResult booleanResult)

Parameters

booleanResult Result.BooleanResult

The boolean result.

Returns

bool

The boolean value.