惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
罗磊的独立博客
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 司徒正美
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
小众软件
小众软件
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Jina AI
Jina AI
Y
Y Combinator Blog
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
Vercel News
Vercel News

博客园 - Danys

Ubuntu10.10 安装 Discuz 在Windows 7 的Windows Virtual PC上装 Ubuntu 10.10 使用Carbide.c++搭建S60开发环境 手机开发入门系列 主流智能手机操作系统知多少 VB.NET 转换为 C# 验证时间的正则表达式 ASP.NET 开源 Blog 收集 Vista SP1、VS2008 SP1环境中 localhost无法访问 Vista SP1下,IE8,使用支付宝 C#读取文本文件 【翻译】Technical Overview of DirectAccess in Windows 7 and Windows Server 2008 R2 Silverlight 2 相关资源下载地址 C#读取Excel方法总结 11款完全免费的Web设计工具 Elcomsoft宣称WPA/WPA2无线加密破解速度提高100倍 Microsoft Silverlight 2 正式版本发布 NET 4.0将包含并行扩展 13个大文件邮件传送服务
C# 写文本文件
Danys · 2009-03-10 · via 博客园 - Danys

#region 写文本文件
string text = Console.ReadLine();
StreamWriter streamw = File.CreateText(@"E:\test3.txt");
streamw.WriteLine(text);
streamw.Close();
#endregion

这里只做一个简单的说明。可以在这个基础上进行一些扩展。

注明【原创】内容为本人创作之内容,禁止任何形式的转载。