using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Test { public int lol; public int test; public Test setTest(int tests) { test = tests; return this; } public Test setLol(int lols) { lol = lols; return this; } public int getResult() { return lol * test; } } class Program { static void Main(string[] args) { object b; Test a = new Test(); a.setLol(1).setTest(1); Console.WriteLine("result = {0:f}", a.getResult()); Console.ReadKey(); } } }