Table of Contents

Class Result.StringResult

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

Represents the string result.

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

Constructors

StringResult(string)

Initializes a new instance of the Result.StringResult class.

public StringResult(string str)

Parameters

str string

The string value.

Properties

String

Gets the string value.

public override string String { get; }

Property Value

string

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 string(StringResult)

public static implicit operator string(Result.StringResult stringResult)

Parameters

stringResult Result.StringResult

The string result.

Returns

string

The string.