示例#1
0
    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);
    }
示例#2
0
    // // / /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);
    }