摘要: Word 操作总汇using System;using System.Collections.Generic;using System.Linq;using System.Text;using Word = Microsoft.Office.Interop.Word;namespace TEST{ class MyWord { /// /// Creat a word document /// public void CreatWord() { object oMissing = Sys... 阅读全文
posted @ 2013-06-26 21:06 絕對零℃ 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 今天去面试考官给了下面几个题,随便做了下有没有更好的算法来实现这些东西呢?有兴趣的朋友可以探讨下 1 //1.实现 string.reverse 方法 2 private string Reverse(string str) 3 { 4 string result = string.Empty; 5 if (!string.IsNullOrEmpty(str)) 6 { 7 for (int i = str.Length - 1... 阅读全文
posted @ 2013-06-26 20:43 絕對零℃ 阅读(170) 评论(0) 推荐(0) 编辑