Can't i overload GetEnumerator () like
IEnumerator<T> IEnumerable<T>.GetEnumerator<T> ( T[] val1,T[] val2)
{
.... some code
}
|
|
Can't i overload GetEnumerator () like
|
||
|
|
|
|
No. Just create a normal method instead, e.g.
|
||
|
|
|
GetEnumerator doesn't take parameters. |
||
|
|
|
|
You can propose an overload for |
||
|
|
|
How about an extension method? i.e.:
But what are you trying to do in this "overload"? If you want to merge those two arrays of T, IEnumerable already has a number of methods which take methods. Make sure you're not reinventing the wheel! |
||
|
|