Beispiel #1
0
 //initializes the periodic table
 //by parsing the element data
 private static void Initialize()
 {
     List<Element> elements = ChemistryCSVParser.ParseString(ELEMENT_DATA);
     tableInstance = new PeriodicTable(elements);
 }
Beispiel #2
0
		//initializes the periodic table
		//by parsing the element data
		private static void Initialize() {
			List<Element> elements = ChemistryCSVParser.ParseString(ELEMENT_DATA);
			tableInstance = new PeriodicTable(elements);
		}