博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ArrayList与结构体应用
阅读量:5998 次
发布时间:2019-06-20

本文共 690 字,大约阅读时间需要 2 分钟。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections;
  6. namespace TestArrayList
  7. {
  8.     class Program
  9.     {
  10.         public struct SData
  11.         {
  12.             public int Index;
  13.             public string Content;
  14.         }
  15.         static void Main(string[] args)
  16.         {
  17.             ArrayList aList = new ArrayList();
  18.             SData d0 = new SData();
  19.             d0.Index = 0;
  20.             d0.Content = "d0";
  21.             aList.Add(d0);
  22.             SData d1 = new SData();
  23.             d1.Index = 1;
  24.             d1.Content = "d1";
  25.             aList.Add(d1);
  26.             SData d2 = new SData();
  27.             d2.Index = 2;
  28.             d2.Content = "d2";
  29.             aList.Add(d2);
  30.             foreach (SData d in aList)
  31.             {
  32.                 Console.WriteLine("Index={0} Content={1}", d.Index, d.Content);
  33.             }
  34.             Console.WriteLine();
  35.             Console.ReadLine();
  36.         }
  37.     }
  38. }

引用命令空间:

using System.Collections;

 

效果图:

 

参考文献:

转载地址:http://wjkmx.baihongyu.com/

你可能感兴趣的文章
1.3 IDAE安装GO插件
查看>>
20172303 2017-2018-2 《程序设计与数据结构》第10周学习总结
查看>>
11个强大的Visual Studio调试小技巧
查看>>
Servlet的url-pattern匹配规则详细描述
查看>>
AndroidManifest.xml
查看>>
Matrix Power Series
查看>>
WPF中的平移缩放和矩阵变换(TranslateTransform、ScaleTransform、MatrixTransform)
查看>>
Interpolator
查看>>
PHP 汉字 转换成 拼音
查看>>
CSS的六种定位模型
查看>>
移动语音引擎相关开发笔记
查看>>
oracle本机登录不上dba的权限不足错误
查看>>
Cow Bowling
查看>>
eclipse4.5.2搭建javaee环境
查看>>
Linux操作系统入门教程
查看>>
Toggle Checkboxes on/off
查看>>
[Luogu1355]神秘大三角
查看>>
平面上的点和直线上的点一样多
查看>>
文件处理
查看>>
What are words-Chris Medina
查看>>