2012-02-01 55 views
0

這個問題是有關:由於以前的問題是不夠清楚,這裏是我需要精確幫助Casting items of a collection with code generation如何使用OpCodes.Call生成這個代碼

如何使用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

兩個方法調用應該是這個樣子:

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

我有一個建議 - 用C#編寫代碼,編譯它並使用ILDASM來查看你需要發送的內容。

+0

我覺得這是很好的建議。 – usr 2012-02-01 22:17:04

+0

這確實是一個很好的建議,但我仍然不知道如何生成我看到的IL代碼(我添加了兩行,我認爲我需要生成Edit 1) – W3Max 2012-02-01 22:51:14