Any workaround?
I need it for method overloading.
like this:
- Code: Select all
//I have class Base, A : Base, B: Base
dynamic b = ...
mymethod(b); //this only works if b is dynamic
void mymethod(A p);
void mymethod(B p);
by Vania » July 25th, 2012, 5:17 pm
//I have class Base, A : Base, B: Base
dynamic b = ...
mymethod(b); //this only works if b is dynamic
void mymethod(A p);
void mymethod(B p);
by qugengames » September 19th, 2018, 9:35 pm
by qugengames » October 24th, 2018, 10:48 pm
qugengames wrote:I'm having this same issue after almost 6 years.
I need to use Dynamic variables to speed up the game making process of a game I'm working on,
If CSharp.dll can't be used what is the work-around?
Not using Dynamic will make my development a nightmare....