摘要: 获取用于写入应用程序输入的流。 命名空间:System.Diagnostics程序集:System(在 system.dll 中) 语法 C# C++ VB public StreamWriter StandardInput { get; } J# /** @property */ public S 阅读全文
posted @ 2016-04-14 17:54 龙骑科技 阅读(792) 评论(0) 推荐(0)
摘要: 获取或设置一个值,该值指示是否使用操作系统外壳程序启动进程。 命名空间:System.Diagnostics程序集:System(在 system.dll 中) 语法 C# C++ VB public bool UseShellExecute { get; set; } J# /** @proper 阅读全文
posted @ 2016-04-14 17:54 龙骑科技 阅读(6682) 评论(0) 推荐(0)
摘要: 获取或设置一个值,该值指示应用程序的输入是否从 Process.StandardInput 流中读取。 命名空间:System.Diagnostics程序集:System(在 system.dll 中) 语法 C# C++ VB public bool RedirectStandardInput { 阅读全文
posted @ 2016-04-14 17:53 龙骑科技 阅读(1719) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文
posted @ 2016-04-14 11:06 龙骑科技 阅读(730) 评论(0) 推荐(0)
摘要: 一、获取网站根目录的方法有几种如: 以上的代码在"http://localhost/EnglishClub/manage/WebForm1.aspx" 页面运行结果: 以上的方法可以在.aspx中访问,但是如果你在 .cs文件就不能用。 下面两个都可以在.cs文件中用: HttpContext.Cu 阅读全文
posted @ 2016-04-14 11:02 龙骑科技 阅读(469) 评论(0) 推荐(0)
摘要: 原文地址:http://blog.csdn.net/byxdaz/article/details/5972759 GDI+(Graphics Device Interface Plus图形设备接口加)是Windows XP和Windows Server 2003操作系统的子系统,也是.NET框架的重 阅读全文
posted @ 2016-04-14 10:19 龙骑科技 阅读(9966) 评论(2) 推荐(2)
摘要: 在程序中直接生产jpg图片,质量不如原图,是因为微软的Image.Save方法保存到图片压缩质量为75,所以保存的图片质量偏低了,要使生成的图片质量有所提高就需要自己设定EncoderParameters类的质量参数和ImageCodecInfo类的图片保存格式。System.Drawing.Ima 阅读全文
posted @ 2016-04-14 09:27 龙骑科技 阅读(1045) 评论(0) 推荐(0)