Ejemplo n.º 1
0
 public ModulusChecker()
 {
     _weightTable = ModulusWeightTable.GetInstance;
 }
 public ModulusCheck(string weightMappingFileContents)
 {
     _weightTable = new ModulusWeightTable(weightMappingFileContents);
 }
 /// <summary>
 /// uses whichever version of the valacdos files were included at build time
 /// </summary>
 public ModulusCheck()
 {
     _weightTable = new ModulusWeightTable(Resources.valacdos);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// allows provision of the contents of an arbitrary pair of valacdos files
 /// there is no validation of these files
 /// </summary>
 public ModulusChecker(string weightMappingFileContents, string scsubtabFileContents)
 {
     _weightTable          = new ModulusWeightTable(weightMappingFileContents);
     _sortCodeSubstitution = new SortCodeSubstitution(scsubtabFileContents);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// uses whichever version of the valacdos files were included at build time
 /// </summary>
 public ModulusChecker()
 {
     _weightTable          = new ModulusWeightTable(Resources.valacdos);
     _sortCodeSubstitution = new SortCodeSubstitution(Resources.scsubtab);
 }
Ejemplo n.º 6
0
 public ModulusChecker()
 {
     _weightTable = ModulusWeightTable.GetInstance;
 }