using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Test { public int lol; public int test; public Test(int lol, int test) { this.test = test; this.lol = lol; } public int getLol() { return this.lol; } public int getTest() { return this.test; } } class Program { static void Main(string[] args) { Test a = new Test(2, 5); Console.WriteLine("text = {0:f}, lol = {1:1#}", a.test, a.lol); Console.ReadKey(); } } }