I wrote code for a new library, most of the code is located under
public class Locked
Most graphical functions are in there. However i also provide some specific exotic maths as a separate name-space in the same dll as Magic Math, those functions are not private just as public as every function under Locked.
public class MagicMath
Some functions inside the Locked class require the MagicMath So i call them as
MagicMath.ResizeDataSet(...
This gives an error An object reference is required for the non-static field, method, or property
'MagicMath.ResizeDataSet( SortedDictionary <int, List<int>>, int, int)'
I'm kinda confused here, as those functions in MagicMath are recognised, their parameters gets accepted, i only get a redline under the function text (ResizeDataSet) when called from within code in the class Locked.. Whats wrong ?