// Collection of code snippets by Arne Vajhøj // posted to eksperten.dk, usenet and other places (2002-now) using System; public class DinKlasse { public void DinMetode() { Console.WriteLine("Det virker"); } public void DinAndenMetode(int iv, string sv) { Console.WriteLine(iv + " " + sv); } }