08 2009 档案
摘要:# D:\Services\ 指定要递归遍历查找的目录# *.config 找查找的文件名$fileList = Get-ChildItem 'D:\Services\' -recurse *.config | %{$_.FullName}Foreach($file in $fileList){ $tmpContent = Get-Content $file for ($i=0; $i -le...
阅读全文
摘要:参考: http://msdn.microsoft.com/en-us/library/ms789008.aspx http://blogs.msdn.com/tomholl/archive/2008/05/17/building-a-pub-sub-message-bus-with-wcf-and-msmq.aspx http://www.cnblogs.com/zhuweisky/arc...
阅读全文
摘要:Find Sample:{\[DataMapping\(\":a*\", DbType.(Int32|String|DecimalDateTime)\)\]}Match:[DataMapping("ID", DbType.Int32)][DataMapping("Amount", DbType.Decimal)]参考:http://msdn.microsoft.com/en-us/library/2k3te2cs(VS.80,ide).aspxhttp://forums.microsoft.com/MSDN/ShowPost.aspx
阅读全文