Search Results for

    Show / Hide Table of Contents

    Interface IRomanizationSystem

    A system used to romanize a language.

    Namespace: Romanization
    Assembly: Romanization.NET.dll
    Syntax
    public interface IRomanizationSystem

    Properties

    | Improve this Doc View Source

    Type

    The type of the system - this is an important consideration depending on the purpose of romanizing the text.
    For more information, visit: https://en.wikipedia.org/wiki/Romanization#Methods

    Declaration
    SystemType Type { get; }
    Property Value
    Type Description
    SystemType

    Methods

    | Improve this Doc View Source

    Process(String)

    The system-specific function that romanizes text according to the system's rules.

    Declaration
    string Process(string text)
    Parameters
    Type Name Description
    System.String text

    The text to romanize.

    Returns
    Type Description
    System.String

    A romanized version of the text, leaving unrecognized characters untouched.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Romanization.NET