xewang
2011-06-13 00:35:08 UTC
It says that we can't do that, but are we allow to do something like this:
void Don'tChangeFoo (int A)
{
int B = ...;
ChangedFoo (int A , int B)
}
void ChangedFoo ( int A, int B)
{ ... }
void Don'tChangeFoo (int A)
{
int B = ...;
ChangedFoo (int A , int B)
}
void ChangedFoo ( int A, int B)
{ ... }