vote up 1 vote down star

Can't i overload GetEnumerator () like

IEnumerator<T> IEnumerable<T>.GetEnumerator<T> ( T[] val1,T[] val2)

{

  .... some code

}
flag

4 Answers

vote up 3 vote down check

No. Just create a normal method instead, e.g.

IEnumerator<T> MyCustomEnumerator<T>(T[] val1, T[] val2) {
    // some code
}
link|flag
Thanks done what you said. – udana Oct 23 at 12:29
vote up 1 vote down

GetEnumerator doesn't take parameters.

link|flag
vote up 1 vote down

You can propose an overload for GetEnumerator method, but it can't be part of the IEnumerable implementation.

link|flag
Thanks Romain Verdier – udana Oct 23 at 12:30
vote up 0 vote down

How about an extension method?

i.e.:


public static class IEnumeratorExtensions
{
    public static IEnumerator<T> GetEnumerator<T>(this IEnumerable<T> ie,
        T[] val1, T[] val2)
    {
        //your code here
    }
}

...
string[] s1;
string[] s2;

var qry = from s in new string[]{"1", "2"}
          select s;

qry.GetEnumerator(s1, s2);
...

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!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.