C#基础学习之【1】文件操作

本文通过一个简单的C#程序介绍了如何使用System.IO命名空间中的File类来写入和读取文本文件。示例展示了如何创建一个包含两条信息的字符串数组,并将其写入到指定的文本文件中;随后从该文件中读取出这些信息并打印到控制台。
摘要由CSDN通过智能技术生成

本文设备环境:Mac  Mono

using System;
using System.Collections.Generic;
using System.Text;

namespace HelloWorld
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			//默认的路径为bin/Debug
			string file = "../../test.txt";

			Console.WriteLine("hhh");
			string[] data1 = new string[2];
			//write file
			data1 [0] = "第一条信息";
			data1 [1] = "第二条信息";
			System.IO.File.WriteAllLines (file, data1);

			//read file
			if (System.IO.File.Exists (file)) 
			{
				Console.WriteLine("sss");
				string[] data = new string[2];
				data = System.IO.File.ReadAllLines (file);
				Console.WriteLine (data [0]);
				Console.WriteLine (data [1]);

				Console.ReadKey ();
			}
		}
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值