惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
Vercel News
Vercel News
Recent Announcements
Recent Announcements
B
Blog RSS Feed
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
D
Docker
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
L
LangChain Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog
The Cloudflare Blog
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog

博客园 - StephenJu

EntLib--Unity Application Block 1.x DevExpress杂项 .Net异步机制 简单的异步调用 按s1_Name+uuid为一组拆分DS 枚举 分割dataset:待改进... 序列化 DataGridViewComboBoxColumn的使用 datagridview数据验证 通过关键字查找到dgv相关记录后定位 禁止一个程序启动多个实例 将文本文件的内容写进某个表中 获取Assembly的运行路径 关于DataTable里大批量查找的更快速的方法 抽象类 IO DynamicCreateMenu DataTable的简单方法
获取ArrayList中的数据(foreach)
StephenJu · 2008-05-26 · via 博客园 - StephenJu

        public class PositionData
        {
            
private string name; //字段
            private string ticker;//字段
            private string shares;//字段

            
public PositionData()
            {

            }

public PositionData(string name, string ticker, string shares)
            {
                
this.name = name;
                
this.ticker = ticker;
                
this.shares = shares;
            }
public string Name //属性
            {
                
get
                {
                    
return name;
                }
            }
public string Ticker //属性
            {
                
get
                {
                    
return ticker;
                }
            }
public string Shares //属性
            {
                
get
                {
                    
return shares;
                }
            }
        }

        ArrayList values 

= new ArrayList();
        values.Add(
new PositionData("Microsoft""Msft""150 共享")); 
        values.Add(
new PositionData("Intel""Intc""25 共享")); 
        values.Add(
new PositionData("Dell""Dell""115 共享"));
        
foreach (PositionData da in values)
        {
           
if (da.Name == "Microsoft")
              MessageBox.Show(da.Name.ToString()
+" "+da.Ticker.ToString()+" "+da.Shares.ToString(),"Info");
        }
//******************************使用泛******************************//
        
    List
<PositionData> tmp = new List<PositionData>();
        tmp.Add(
new PositionData("Microsoft""Msft""150 共享"));
        tmp.Add(
new PositionData("Intel""Intc""25 共享"));
        tmp.Add(
new PositionData("Dell""Dell""115 共享"));
        
for (int i = 0; i < tmp.Count; i++)
            MessageBox.Show(tmp[i].Name 
+ " " + tmp[i].Ticker + " " + tmp[i].Shares, "Info");