Struct TranslitPair
The structure to store information about one transliterating replacement.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public struct TranslitPair
Constructors
TranslitPair(String, String)
Instantiates a new instance of TranslitPair struct.
Declaration
public TranslitPair(string original, string replacing)
Parameters
Type | Name | Description |
---|---|---|
System.String | original | |
System.String | replacing |
Fields
Original
The original (natinal) character to be transliterated.
Declaration
public string Original
Field Value
Type | Description |
---|---|
System.String |
Replacing
The resulting english character (or few characters) which replaces the original.
Declaration
public string Replacing
Field Value
Type | Description |
---|---|
System.String |
Properties
Item[Int32]
Returns original or replacing string depend on the index [0..1].
Declaration
public string this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Specify "0" to get the original string and "1" to get the replacing string. |
Property Value
Type | Description |
---|---|
System.String | Returns original string for index=0, replacing string for index="1" and empty string otherwise. |