C#笔记
文章平均质量分 70
iteye_10798
这个作者很懒,什么都没留下…
展开
-
创建进程并且等待进程结束
Processクラスを利用し、プロセスを作成、実行結果を取得する。 ポイント1、WaitForExit() サブプロセス実行完了まで、親プロセスを止まらせる。 ポイント2、ExitCodeプロパティより、サブプロセスの実行結果を取得。 ポイント3、戻り値を付けられる Main で戻り値を返す。 using System; using System.Collections.Gener...原创 2011-03-07 18:08:26 · 194 阅读 · 0 评论 -
XmlSerializer用法
using System.IO; using System.Xml.Serialization; namespace DncSoft.Sample { class Program { static void Main(string[] args) { System.Console.WriteLine(11)...原创 2011-04-15 14:55:16 · 499 阅读 · 0 评论 -
jstring, String, char* 变换函数
#include <malloc.h> #include <string.h> #include <stdlib.h> #include <vcclr.h> using namespace System; using namespace System::Text; // jstring To String String^ jst...原创 2011-04-20 17:50:12 · 298 阅读 · 0 评论 -
使WCF服务支持HTTPS的设定方法 (服务器篇)
1,生成加密证书 用VisualStudio 中 MakeCert.exe 的工具生成加密证书。 MakeCert.exe -sr localmachine -ss My -n CN=localhost,OU=https://localhost -sky exchange -pe -r localhost.cer 2,查看生成好的加密证书的『Thumbprint has...原创 2011-11-19 10:11:21 · 4520 阅读 · 1 评论 -
使WCF服务支持HTTPS的设定方法 (客户篇)
1,客户端配置文件 <?xml version="1.0" encoding="utf-8"?> <configuration> <system.serviceModel> <bindings> <basicHttpBinding> <binding name=&q原创 2011-11-19 11:11:05 · 956 阅读 · 0 评论 -
C# HttpSetServiceConfiguration (SSL)
抄袭下面网站的内容。没有新意。 http://www.pinvoke.net/default.aspx/httpapi.httpsetserviceconfiguration public static void SetCertificate(string ipAddress, int port, byte[] hash, bool isAdd) { uint retVal ...原创 2011-11-25 18:13:11 · 407 阅读 · 0 评论 -
C# HttpSetServiceConfiguration (URLACL)
抄袭下面网站的内容。没有新意。 http://www.pinvoke.net/default.aspx/httpapi.httpsetserviceconfiguration public static void AddUrlAcl(string networkURL, string securityDescriptor) { uint retVal = 0; re...原创 2011-11-25 18:18:32 · 479 阅读 · 0 评论