N
not_a_commie
how many of you have ever had a function declaration like this:
public abstract void DoSomething(double a, double b, double c, double
d, bool force);
that you wished could be declared like this:
public abstract void DoSomething(double a, b, c, d, bool force);
?
I don't see any reason that the compiler couldn't support that second
syntax.
public abstract void DoSomething(double a, double b, double c, double
d, bool force);
that you wished could be declared like this:
public abstract void DoSomething(double a, b, c, d, bool force);
?
I don't see any reason that the compiler couldn't support that second
syntax.