Hey,
Please try below sample, for this method:
IEnumerator<ExpressionType> IEnumerable<ExpressionType>.GetEnumerator
()
The ReturnType.Name is "!0", but not "ExpressionType", a bug?
Regards
Wicky
=============================
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq.Expressions;
namespace TestWin
{
public class Test : IEnumerable<ExpressionType>
{
IEnumerator<ExpressionType>
IEnumerable<ExpressionType>.GetEnumerator()
{
throw new NotImplementedException();
}
IEnumerator IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
}
--~--~---------~--~----~------------~-------~--~----~
--
mono-cecil
-~----------~----~----~----~------~----~------~--~---