コード例 #1
0
 /// <summary>
 /// Creates a new object.
 /// </summary>
 /// <param name="stringsResourceType">The type of the Strings class created by the resource compiler.</param>
 public Localiser(Type stringsResourceType)
 {
     _LocalisedStrings = new LocalisedStringsMap(stringsResourceType);
 }
コード例 #2
0
 /// <summary>
 /// Creates a new object.
 /// </summary>
 /// <param name="stringsResourceType">The type of the Strings class created by the resource compiler.</param>
 public Localiser(Type stringsResourceType)
 {
     _LocalisedStrings = new LocalisedStringsMap(stringsResourceType);
 }
コード例 #3
0
ファイル: Localiser.cs プロジェクト: PhenTse/virtualRadar
 /// <summary>
 /// Creates a new object.
 /// </summary>
 /// <param name="localisedStringsMap">The localised strings map to use when looking up strings.</param>
 public Localiser(LocalisedStringsMap localisedStringsMap)
 {
     _LocalisedStrings = localisedStringsMap;
 }