Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

Converter

Davy Ganzel edited this page Jun 3, 2022 · 8 revisions

Assembly: Narumikazuchi.dll
Namespace: Narumikazuchi

Description

Converts types that implement the IConvertible<TResult> interface.

public static class Converter

Members

ToType<TConvertible, TResult>(TConvertible)
ToType<TConvertible, TResult>(TConvertible, System.IFormatProvider)

Methods

ToType<TConvertible, TResult>(TConvertible)

Converts the specified TConvertible into the TResult type.

public static TType ToType<TConvertible, TResult>(TConvertible) 
    where TConvertible : IConvertible<TResult>;

ToType<TConvertible, TResult>(TConvertible, System.IFormatProvider)

Converts the specified TConvertible into the TResult type using the specified culture-specific formatting.

public static TType ToType<TConvertible, TResult>(TConvertible, 
                                                  System.IFormatProvider) 
    where TConvertible : IConvertible<TResult>;

See also

IConvertible

Clone this wiki locally