如何从c#中的类列表中获取数据 [英] how to get data from class list in c#

查看:70
本文介绍了如何从c#中的类列表中获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  public   class  DashInfo 
{
public int Gid { get ; set ; }
public string 组{ get ; set ; }
public string Region { get ; set ; }
public string IpStatus { get ; set ; }
public List< CellJson>单元格{ get ; set ; }
}





如何从列表中获取以下内容(值存储在列表单元格中)



持续时间
名称
Id

解决方案

让DashInfo objDashInfo = new DashInfo();成为给定类的对象

然后你可以从 Cells 持续时间,名称,Id c>使用以下代码:

 List< celljson> JsonList = objDashInfo.Cells 
ForEach(CellJson item in JsonList)
{
Var Duration = item.Duration;
Var Name = item.Name;
Var Id = item.Id;
} < / celljson > < /跨度>


public class DashInfo
        {
            public int Gid { get; set; }
            public string Group { get; set; }
            public string Region { get; set; }
            public string IpStatus { get; set; }
            public List<CellJson> Cells { get; set; }
        }



How to get below thing from list (The values are stored in List Cells)

Duration
Name
Id

解决方案

let DashInfo objDashInfo = new DashInfo(); be the object of the given class
then you can take Duration,Name,Id from Cells using the following code:

List<celljson> JsonList= objDashInfo.Cells 
ForEach(CellJson item in  JsonList)
{
Var Duration = item.Duration;  
Var Name=item.Name;
Var Id=item.Id;
}</celljson>


这篇关于如何从c#中的类列表中获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆