如何使用OpCodes.Call生成此代码

时间:2012-02-01 22:08:14

标签: c# reflection reflection.emit il

此问题与:Casting items of a collection with code generation

有关

由于上一个问题不够明确,所以我正是需要帮助的。

如何使用OpCodes.Call生成此代码:

return Enumerable.ToList<Potato>(Eumerable.Cast<Potato>(_proxyPotatoes));

以下是我正在尝试做的一个例子:

public class Potato
{
}

public class ProxyPotato : Potato
{    
}

public class Stew
{
  private ICollection<ProxyPotato> _proxyPotatoes;

  //This is the code I would like to generate (specialy the cast part)
  public ICollection<Potato> Potatoes { get { return _proxyPotatoes.Cast<Potato>().ToList(); } }
}

修改1

在@zmbq的建议之后,我需要生成两行IL:

call class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0> [System.Core]System.Linq.Enumerable::Cast<class Maxime.Potato>(class [mscorlib]System.Collections.IEnumerable)

call class [mscorlib]System.Collections.Generic.List`1<!!0> [System.Core]System.Linq.Enumerable::ToList<class Maxime.Potato>(class [mscorlib]System.Collections.Generic.IEnumerable`1<!!0>)

2 个答案:

答案 0 :(得分:5)

我有一个建议 - 用C#编写代码,编译它并使用ILDASM来确切了解Emit所需的内容。

答案 1 :(得分:2)

两个方法调用应该类似于:

ilg.Emit(OpCodes.Call, typeof(Enumerable).GetMethod("Cast").MakeGenericMethod(typeof(Potato)));
ilg.Emit(OpCodes.Call, typeof(Enumerable).GetMethod("ToList").MakeGenericMethod(typeof(Potato)));