Ejemplo n.º 1
0
 public Attr(int[] up0, System.Type[] up1, int up2, float up3, SomeStuff up4, String up5)
 {
     name = "multiple1";
     unnamed_list = up0[0].ToString() + "\t|" +
             up1[0].ToString() + "\t|" +
             up2.ToString() + "\t|" +
             String.Format("{0:N2}", up3) + "\t|" +
             up4.ToString() + "\t|" +
             up5;
 }
Ejemplo n.º 2
0
 public Attr(int[] up0, ulong up1, int up2, double up3, SomeStuff up4, String up5)
 {
     name = "multiple2";
     unnamed_list = up0[0].ToString() + "\t|" +
             up1.ToString() + "\t|" +
             up2.ToString() + "\t|" +
             String.Format("{0:N2}", up3) + "\t|" +
             up4.ToString() + "\t|" +
             up5;
 }
Ejemplo n.º 3
0
 public Attr(SomeStuff up0)
 {
     name = "enum";
     unnamed_list = up0.ToString();
 }