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; }
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; }
public Attr(SomeStuff up0) { name = "enum"; unnamed_list = up0.ToString(); }