如何从对象中获取列表中的值

时间:2013-05-16 05:05:31

标签: c#-4.0 collections asp.net-4.0

我正在调用服务,服务正在返回包含列表的对象。在此列表中,元素的数量类似于列表[0],列表1等...

现在我试图从列表中获取值,但它不允许从列表中获取值。 下面是我写的代码。

 //calling a service
        MarkelRate = Markel.MarkelService(username, password, dt, GR.State, classCode, GR.Territory, EachOcc, GeneralAgg, Deductible);

enter image description here

我是这样想的。

enter image description here

1 个答案:

答案 0 :(得分:1)

Hemanth试试这样。

MarkelRate = Markel.MarkelService(username, password, dt, GR.State, classCode, GR.Territory, EachOcc, GeneralAgg, Deductible);
        foreach (msu.markelcorp.com.Markel.MarkelClassGuide.GLClassRate item in MarkelRate.List)
        {
           string PrmiumRate = item.BaseRate.ToString();
        }