blah blah blah is here! blah blah » Close

0
votes
3 answers

Pass By Reference

eeboy
499

I created a method which accepts a parameter of type List<T>. The method then does some operations which fill this list. Single stepping in debug I can see that it does this correctly. However, when it returns from the method all the ...

1
votes
1 answers

Mutator class, my little expirament

I've created a Mutator class that looks like : [code] namespace Engine.Core.Mutators { public abstract class Mutator { private Dictionary<string, object> _mutatableObjects; private Dictionary<string, ...

Feedback