I'm building a wrapper for a jquery plugin to C# and I dont like the usage of [Optional] because its not as "optional" as it says it is(meaning you still have to declare that System.Missing library) so I decided to use overloaded methods. I want to give the user alot of customization but I'm not sure how explicit I should be with my overloads. Should I break it down in terms of importance for the parameters or do an overload for every scenario.
P.S I'm calling a base class' constructor and having to use base(param1, param2, ...) method but I would also like to use this(param1, param2, ...) instead of having to initialize my member variables in each scenario, is there a way around this?
