private void write(char method, float[] var) { string toWrite = name + " " + method; for (int i = 0; i < var.Length; i++) { toWrite += " " + var[i]; } toWrite += ";\n"; writer.write(toWrite); }
// // / /envoie !!! / / void write(string nom, string method, float[] var) { //print (name); string toWrite = nom + " " + method; for (int i = 0; i < var.Length; i++) { toWrite += " " + var[i]; } toWrite += ";\n"; writer.write(toWrite); }