Table of Contents

Interface IParser<TResult>

Namespace
Cuemon.Text
Assembly
Cuemon.Core.dll

Defines methods that converts a System.String to a generic object of TResult.

public interface IParser<TResult>

Type Parameters

TResult

The type of the converted result.

Methods

Parse(String)

Converts the input to its TResult equivalent.

TResult Parse(string input)

Parameters

input String

The string to convert.

Returns

TResult

A TResult equivalent to input.

TryParse(String, out TResult)

Converts the input to its TResult equivalent. A return input indicates whether the conversion succeeded.

bool TryParse(string input, out TResult result)

Parameters

input String

The string to convert.

result TResult

When this method returns, contains the TResult equivalent of the input, if the conversion succeeded, or default if the conversion failed.

Returns

Boolean

true if input was converted successfully; otherwise, false.