welcome to Qijie's Blog 薛其杰
摘要: Symptoms:When you try to import a virtual machine that has been exported by using Hyper-V Manager, you cannot import the virtual machine by using Hyper-V Manager on a different Hyper-V server. Additio... 阅读全文
posted @ 2010-08-05 09:52 零点零一 阅读(574) 评论(0) 推荐(0)
摘要: 公司里边有一条test case是检查提供给客户的文件里边没有空的文件夹, 我自己就做了个小工具来跑这条 case. 基础就是利用.NET 3.5中的SystemFileInfo类来调区disk上的信息:界面如下:代码如下:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlig... 阅读全文
posted @ 2010-07-30 17:05 零点零一 阅读(466) 评论(0) 推荐(0)
摘要: Configure SSL Security in SP2010. make sure the SSL Security is not configured1. Open Central Administration, on left Quick Launch click Security, in General Security section, click Configure managed ... 阅读全文
posted @ 2010-07-07 10:15 零点零一 阅读(404) 评论(0) 推荐(0)
摘要: You are using Hyper-V VM and you want to access files in your physical hard disk, first you can burn the files to image, then attach the image to the DVD Drive in the VM, or you can do the following s... 阅读全文
posted @ 2010-07-06 10:09 零点零一 阅读(506) 评论(0) 推荐(0)
摘要: When using Virtual PC to operate VM, you may want to use the files from physical hard disk in VM, blow steps tell you how to realize this.Preparation:1. Start the VM, after vM started, click CD in the menu and select Capture ISO Image.2. In the Select CD Image to Capture dialog, navigate to the loca 阅读全文
posted @ 2010-07-06 09:45 零点零一 阅读(916) 评论(0) 推荐(0)
摘要: 下面的代码示例演示 Stack 泛型类的几种方法,其中包括 Peek 方法。 此代码示例创建具有默认容量的字符串堆栈,并使用 Push 方法将五个字符串压入堆栈。枚举堆栈的元素,这不会更改该堆栈的状态。使用 Pop 方法将第一个字符串弹出堆栈。使用 Peek 方法查看此堆栈中的下一个项,然后使用 Pop 方法将其弹出。使用 ToArray 方法创建数组并将堆栈元素复制到其中,然后将数组传递给具有 ... 阅读全文
posted @ 2010-04-20 09:33 零点零一 阅读(531) 评论(0) 推荐(0)
摘要: [代码] 阅读全文
posted @ 2010-03-09 16:23 零点零一 阅读(295) 评论(0) 推荐(0)
摘要: 1 1 2 3 5 8...递归:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticintFibonacciRecursive(intn){if(n==1||n==2)return1;elseif(n>=2){returnFibon... 阅读全文
posted @ 2010-02-20 11:11 零点零一 阅读(342) 评论(1) 推荐(0)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticvoidPrintSequenceString(stringinputStr){if(string.IsNullOrEmpty(inputStr))thrownewArgumentNull... 阅读全文
posted @ 2010-02-09 12:46 零点零一 阅读(372) 评论(0) 推荐(0)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--staticintReturnIndex(stringinputStr,stringsubStr){if(string.IsNullOrEmpty(inputStr))thrownewArgument... 阅读全文
posted @ 2010-02-08 20:28 零点零一 阅读(427) 评论(0) 推荐(0)