C#中利用process类调用外部程序以及执行dos命令 - ASP.NET
摘要:c#中的Process类可方便的调用外部程序,所以我们可以通过调用cmd.exe程序加入参数 "/c " + 要执行的命令来执行一个dos命令 (/c代表执行参数指定的命令后关闭cmd.exe /k参数则不关闭cmd.exe) 1 private string RunCmd(string command) 2 { 3 //€€例一€€P...
阅读全文
posted @
2007-04-30 17:59
Joey Liang
阅读(1977)
推荐(0)
Object Serialization using C# - The Code Project - C# Programming
摘要:Object Serialization using C# By omkamal. How to serialize custom created class objects using C# C#Windows, .NET (.NET 1.0)Win32, VSDevPosted: 1 Feb 2002Views: 231,554 Popularity: 7.67. Rating...
阅读全文
posted @
2007-04-10 10:43
Joey Liang
阅读(1096)
推荐(0)
David Hurtado's Integration Traces : BizTalk messages based on .NET types instead of Xsd schemas
摘要:BizTalk messages based on .NET types instead of Xsd schemas Abstract: You can create a BizTalk message from a custom .NET class, instead of using an Xsd schema. This practice has some pros and cons....
阅读全文
posted @
2007-04-07 22:04
Joey Liang
阅读(242)
推荐(0)
Darren Jefford : Calling a .NET Assembly from Orchestration with Schema Types
摘要:Darren Jefford Principal Consultant, Application Development Consulting, Microsoft UK Calling a .NET Assembly from Orchestration with Schema Types There I was today pointing at a customer at a past...
阅读全文
posted @
2007-04-07 22:00
Joey Liang
阅读(969)
推荐(0)
BizTalk Server 2006: Using .NET Classes for Orchestration Message Types
摘要:BizTalk Server 2006: Using .NET Classes for Orchestration Message Types BizTalk allows serialisable .NET classes to be used as message types in BizTalk orchestrations. You can use tools such as XS...
阅读全文
posted @
2007-04-07 21:55
Joey Liang
阅读(330)
推荐(0)
Minty Fresh : So You Want To Write An Orchestration?
摘要:So You Want To Write An Orchestration? Is there a BizTalk Server 2006 orchestration in your future? This post is a modest attempt to catalog some of the many useful tidbits of information out on th...
阅读全文
posted @
2007-04-07 21:55
Joey Liang
阅读(487)
推荐(0)
Message Construction in an Orchestration
摘要:Message Construction in an Orchestration Probem When you are in an orchestration there and you want to create a new instance of a message but not by mapping it from an existing message there are a n...
阅读全文
posted @
2007-04-07 21:52
Joey Liang
阅读(410)
推荐(0)
Matt Meleski's .Net Blog - The ABC's of .NET : Constructing BizTalk 2004 XML Messages (In an Orchestration) - Choices
摘要:Constructing BizTalk 2004 XML Messages (In an Orchestration) - Choices Before using a BizTalk XML message inside an Orchestration , it must first be constructed. In fact ,this is just populating th...
阅读全文
posted @
2007-04-07 21:49
Joey Liang
阅读(500)
推荐(0)
[原创]我的WCF之旅(4):WCF中的序列化(Serialization)- Part I - Artech - 博客园
摘要:[原创]我的WCF之旅(4):WCF中的序列化(Serialization)- Part I SOA 和Message Windows Communication Foundation (WCF) 是基于面向服务架构(Service Orientation Architecture——SOA)的一种理想的分布式技术(Distributed Technology), 相信在今后在建立基于SOA企...
阅读全文
posted @
2007-04-07 20:16
Joey Liang
阅读(416)
推荐(0)
Service Station: WCF Messaging Fundamentals -- MSDN Magazine, April 2007
摘要:WCF Messaging Fundamentals Explore the code. Download the code. Get the sample code for this article. NEW: Explore the sample code online! - or - Code download available at: ServiceStation2007_04....
阅读全文
posted @
2007-04-05 21:11
Joey Liang
阅读(685)
推荐(0)
Distributed .NET: Learn The ABCs Of Programming Windows Communication Foundation -- MSDN Magazine, February 2006
摘要:Learn The ABCs Of Programming Windows Communication Foundation Explore the code. Download the code. This article is based on a prerelease version of WinFX. All information contained herein is subje...
阅读全文
posted @
2007-04-05 21:11
Joey Liang
阅读(487)
推荐(0)
c#2.0语法新关键字 partial
摘要:再里介绍了.NET1.1里C#的基本语法,这些语法再.NET2.0的C#里同样适用。不过 在ASP.NET2.0里增加了一个新的关键字partial,partial 关键字的作用是将你的 class 分为多个部分,编译器会将多个部分拼到一起,下面我们就介绍该关键字的作用与使用。 使得使用该书的您很容易过渡到.NET2.0,或者说让您更明白微软为什么这么做,看完本文您就应该明白是因为需...
阅读全文
posted @
2007-04-05 14:46
Joey Liang
阅读(957)
推荐(0)