i wanted make small program, have lot of doubles atom mass each atom. want able write molecule formula textbox, whereafter program should able calculate molar mass, however, dont know how can cut string textbox, instance can inserting "nacl" textbox, value of na double plus value of cl double. namespace windowsformsapplication33 { public partial class form1 : form { double h = 1.00794; double = 4.002602; double li = 6.941; double = 9.012182; ... these doubles, want button do: private void button1_click(object sender, eventargs e) { //take different atoms in molecule formula textbox, //get value of doubles, , add them //a final value, instance: nacl = na + cl = 22.98976928 + 35.453 = 58.44276928 } also, want able write h2so4, h*2 + s + o*4, how go doing that? thank in advance dictionary<string, double> chemicals = new dictionary<string, do...