博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 命令行下编译c#文件 // c# file类读写文件
阅读量:4881 次
发布时间:2019-06-11

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

c# 命令行下编译c#文件  

2010-03-01 15:02:14|  分类: |字号 

 
 

在 开始  ——>程序 ——>vstool中打开vs2008命令提示。

通过指令进入要编译的.cs文件目录下。

csc 123.cs

生成123.exe

123.exe 运行

 

--------------------------------------------

 

 

c# file类读写文件  

2010-03-01 14:51:36|  分类: |字号 

 

 

 

 

 

using System;using System.IO;class Test {    public static void Main()     {        string path = @"c:\temp\MyTest.txt";        // This text is added only once to the file.        if (!File.Exists(path))         {            // Create a file to write to.            using (StreamWriter sw = File.CreateText(path))             {                sw.WriteLine("Hello");                sw.WriteLine("And");                sw.WriteLine("Welcome");            }            }        // This text is always added, making the file longer over time        // if it is not deleted.        using (StreamWriter sw = File.AppendText(path))         {            sw.WriteLine("This");            sw.WriteLine("is Extra");            sw.WriteLine("Text");        }            // Open the file to read from.        using (StreamReader sr = File.OpenText(path))         {            string s = "";            while ((s = sr.ReadLine()) != null)             {                Console.WriteLine(s);            }        }    }}

 

 

原文引入:

 

 

-----------------------------------

 

 

转载于:https://www.cnblogs.com/meimao5211/p/3333964.html

你可能感兴趣的文章
zz 悲催的程序员,以及程序员的悲催
查看>>
Flv.js
查看>>
Java工程师成神之路
查看>>
线程池ThreadPoolExecutor整理
查看>>
如何将离线的PIP安装包快速安装好
查看>>
应对通过代理攻击服务器的方法
查看>>
TIPSO--基于JQUERY的消息提示框插件,用起来蛮顺手
查看>>
散列表(哈希表)
查看>>
Linux基础命令---显示域名ypdomainname
查看>>
Rails学习笔记(1)-Ubuntu12.04下的环境配置
查看>>
LeetCode - Remove Duplicates from Sorted Array
查看>>
object.__getattr__(self, name) 、object.__setattr__(self, name, value)
查看>>
环境光
查看>>
ExtJS基础篇
查看>>
Javassist字节码强化
查看>>
把普通函数指针,变成对象方法指针
查看>>
jax-ws开发接口传参数
查看>>
IIS 6.0、IIS 7.0/ 7.5 配置HTTP压缩的步骤
查看>>
【JZOJ4934】【NOIP2017GDKOI模拟1.12】a
查看>>
猎豹MFC--GDI+
查看>>