Interface IReadingsSystem<TType>
A system used to romanize a language with multiple readings (pronunciations) per character.
Namespace: Romanization
Assembly: Romanization.NET.dll
Syntax
public interface IReadingsSystem<TType> : IRomanizationSystem where TType : Enum
Type Parameters
Name | Description |
---|---|
TType | The types of reading the system uses. |
Methods
| Improve this Doc View SourceProcessWithReadings(String)
The system-specific function that romanizes text in a language with multiple readings (pronunciations) per character.
Declaration
ReadingsString<TType> ProcessWithReadings(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The text to romanize. |
Returns
Type | Description |
---|---|
ReadingsString<TType> | A ReadingsString<TType> with all readings for each character in |