votes
garbage collection
[code]using System; class MyClass { int a, b; // private // Create a class factory for MyClass. public MyClass Factory(int i, int j) { MyClass t = new MyClass(); t.a = i; t.b = j; [b]retu ...
blah blah blah is here! blah blah » Close
[code]using System; class MyClass { int a, b; // private // Create a class factory for MyClass. public MyClass Factory(int i, int j) { MyClass t = new MyClass(); t.a = i; t.b = j; [b]retu ...
hi guyz i have a question, i dontknow as much as necessay to know about the garbage collector, finalize method, disposing data from the memory and anything else related with this.... oki want to know these things clearly if any body c ...
This is probably the third time Ive asked if something in C# creates garbage. :P Ive read a couple tutorials but they explain only about using keyword 'new'. Does this mean that garbage is ONLY created when 'new' is used? I ask in tit ...
Got feedack? Found a bug? report it here.