WikiFunctions.Diff.IEnumerable C# (CSharp) Method

IEnumerable() private method

private IEnumerable ( ) : IEnumerator
return IEnumerator
        IEnumerator IEnumerable.GetEnumerator()
        {
            if (cdif == null)
            {
                throw new InvalidOperationException("No comparison has been performed.");
            }
            return new Enumerator(this);
        }