资源简介
数组应用 获取循环长度及内容
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace testDemo
{
public partial class Form1 : Form
{
string[] names = new string[] { “Matt“ “Joanne“ “Robert“ };
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
foreach (var pt in names)
{
//MessageBox.Show(pt);
}
//MessageBox.Show(names.Length.ToString());
onOpen(names);
}
private void onOpen(string[] names)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-12-01 08:29 testDemo\
文件 2023 2015-12-01 08:29 testDemo\Form1.Designer.cs
文件 1034 2015-12-01 12:11 testDemo\Form1.cs
文件 5817 2015-12-01 08:29 testDemo\Form1.resx
文件 489 2015-12-01 08:29 testDemo\Program.cs
目录 0 2015-12-01 08:29 testDemo\Properties\
文件 1336 2015-12-01 08:29 testDemo\Properties\AssemblyInfo.cs
文件 2868 2015-12-01 08:29 testDemo\Properties\Resources.Designer.cs
文件 5612 2015-12-01 08:29 testDemo\Properties\Resources.resx
文件 1095 2015-12-01 08:29 testDemo\Properties\Settings.Designer.cs
文件 249 2015-12-01 08:29 testDemo\Properties\Settings.settings
目录 0 2015-12-01 08:29 testDemo\bin\
目录 0 2015-12-01 08:30 testDemo\bin\Debug\
文件 8704 2015-12-01 12:11 testDemo\bin\Debug\testDemo.exe
文件 24064 2015-12-01 12:11 testDemo\bin\Debug\testDemo.pdb
文件 22472 2015-12-01 12:11 testDemo\bin\Debug\testDemo.vshost.exe
文件 490 2010-03-17 22:39 testDemo\bin\Debug\testDemo.vshost.exe.manifest
目录 0 2015-12-01 08:29 testDemo\obj\
目录 0 2015-12-01 12:11 testDemo\obj\Debug\
文件 851 2015-12-01 08:29 testDemo\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6821 2015-12-01 08:29 testDemo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2015-12-01 12:12 testDemo\obj\Debug\TempPE\
文件 180 2015-12-01 08:30 testDemo\obj\Debug\testDemo.Form1.resources
文件 180 2015-12-01 08:30 testDemo\obj\Debug\testDemo.Properties.Resources.resources
文件 858 2015-12-01 12:11 testDemo\obj\Debug\testDemo.csproj.FileListAbsolute.txt
文件 975 2015-12-01 08:30 testDemo\obj\Debug\testDemo.csproj.GenerateResource.Cache
文件 2143 2015-12-01 11:54 testDemo\obj\Debug\testDemo.csprojResolveAssemblyReference.cache
文件 8704 2015-12-01 12:11 testDemo\obj\Debug\testDemo.exe
文件 24064 2015-12-01 12:11 testDemo\obj\Debug\testDemo.pdb
文件 3729 2015-12-01 08:30 testDemo\testDemo.csproj
文件 914 2015-12-01 08:29 testDemo.sln
............此处省略1个文件信息
- 上一篇:C#高级编程(第6版)pdf 非扫描版
- 下一篇:练习c#适合初学者
评论
共有 条评论