主题:我是菜鸟|为什么不能编译?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
File f = new File("D:\a.ini");
StreamReader strim = f.OpenText();
string s;
s = strim.ReadLine();
while (s != null)
{
listBox1.Items.Add(s);
s = strim.ReadLine();
}
strim.close;
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
File f = new File("D:\a.ini");
StreamReader strim = f.OpenText();
string s;
s = strim.ReadLine();
while (s != null)
{
listBox1.Items.Add(s);
s = strim.ReadLine();
}
strim.close;
}
}
}