Class Russian.RoadSigns
The general road sign romanization system of Russian.
This consists of Russian GOST R 52290-2004 (tables Г.4, Г.5) as well as GOST 10807-78 (tables 17, 18), historically.
For more information, visit:
https://en.wikipedia.org/wiki/Romanization_of_Russian#Street_and_road_signs
Inheritance
Namespace: Romanization
Assembly: Romanization.NET.dll
Syntax
public sealed class RoadSigns : object, IMultiInCultureSystem, IRomanizationSystem
  Constructors
| Improve this Doc View SourceRoadSigns()
Instantiates a copy of the system to process romanizations.
Declaration
public RoadSigns()
  Properties
| Improve this Doc View SourceDefaultCulture
The default culture this system will go with for romanization if Process(String) is used.
Declaration
public CultureInfo DefaultCulture { get; }
  Property Value
| Type | Description | 
|---|---|
| CultureInfo | 
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
public SystemType Type { get; }
  Property Value
| Type | Description | 
|---|---|
| SystemType | 
Methods
| Improve this Doc View SourceProcess(String)
Performs general road sign romanization on Russian text.
Declaration
public 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.  | 
      
Process(String, CultureInfo)
Performs general road sign romanization on Russian text.
Supports providing a specific nativeCulture to process with, as long as the country code is ru.
Declaration
public string Process(string text, CultureInfo nativeCulture)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | text | The text to romanize.  | 
      
| CultureInfo | nativeCulture | The culture to use.  | 
      
Returns
| Type | Description | 
|---|---|
| System.String | A romanized version of the text, leaving unrecognized characters untouched.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| IrrelevantCultureException | 
  |