我有這種類型的變量:方法,返回匿名類型C#
我應該寫我的方法是什麼樣的回報類型的?我寫了object
但它沒有解決。謝謝。
編輯:
我做了這樣的類:
public class IlIlceTarife
{
public string Il { get; set; }
public string Ilce { get; set; }
public string Tarife { get; set; }
}
public class a
{
public IlIlceTarife Name { get; set; }
public int Sayi { get; set; }
}
而且我做的返回類型爲這樣:
public List<IEnumerable<a>> TarifeGiver1(string il, string ilce)
而且VS給了這個錯誤:
> Cannot implicitly convert type
> 'System.Collections.Generic.List<System.Collections.Generic.IEnumerable<<anonymous
> type: <anonymous type: string Il, string Ilce, string Tarife> Name,
> int Sayi>>>' to
> 'System.Collections.Generic.List<System.Collections.Generic.IEnumerable<WebApplication2.Controllers.a>>'
編寫類來代替。 –
爲什麼你給一個班級一個名字'a'?這是我可以想象得出的最無名的名字 –
@TimSchmelter我以後會改變它。只是寫了很快。 – jason