Er det ikke lidt omstændigt. Lad os forstille os at jeg også skulle benytte DoStuff klassen i andre klasser, vil der så ikke være en nemmere måde at gøre det på?
I VB skal man jo blot deklarere sin funktion som public også er man home-free ;-)
public class Demo { private static int si = 0; private int nsi = 0; public Demo() { si++; nsi++; } public void printNsi() { Console.WriteLine(nsi); } public static void printSi() { Console.WriteLine(si); } public static void Main() { Demo d1 = new Demo(); Demo d2 = new Demo(); d1.printNsi(); d2.printNsi(); Demo.printSi(); } }
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.