Time of Update: 2015-02-04
標籤:說明: 1,採用dynamic調用COM組件,適用於.NET 4.0以上支援dynamic版本的才可以; 2,執行速度不敢恭維,只是因為要用於Silverlight OOB模式中才研究一二; 3,測試環境.net 4.5+Silverlight 5.0+Visual Studio 2013 4,見如下helper類(引用using System.Runtime.InteropServices.Automation;): public class
Time of Update: 2015-02-04
標籤:Memwatch簡單介紹在三種檢測工具其中,設定最簡單的算是memwatch,和dmalloc一樣,它能檢測未釋放的記憶體、同一段記憶體被釋放多次、位址存取錯誤及不當使用未分配之記憶體地區。請往http://www.linkdata.se/sourcecode.html下載最新版本號碼的Memwatch。安裝及使用memwatch非常幸運地,memwatch根本是不須要安裝的,由於它僅僅是一組C程式碼,僅僅要在你程式中增加memwatch.h,編譯時間加上-DMEMWATCH
Time of Update: 2015-02-04
標籤:using System.IO; 這段代碼會出現亂碼 gb2312 編碼的網頁存下後出現亂碼String path = "d:\\1.html"; StreamReader sr = new StreamReader(webBrowser1.DocumentStream, Encoding.GetEncoding("GBK")); StreamWriter sw = new
Time of Update: 2015-02-04
標籤: 工作中遇到要上傳下載的功能,而中間接收的伺服器最大隻能接收200M的檔案,對於大檔案無法滿足,所以只能在上傳的時候對大於100M的檔案進行分割,分割成的小檔案為原大檔案名稱+.temp+i。在下載端,下載完成後再對其進行合并。 思路:檔案的分割與合并就是將檔案先轉換成流再對其進行操作。 /// <summary> /// 分割檔案方法 /// </summary> /// <param
Time of Update: 2015-02-04
標籤:1、介面using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace PlugDemo{ public interface IPlugToText { string ProccessText(string text); }}2、菜單屬性Classusing System;using
Time of Update: 2015-02-04
標籤: 1.添加命名空間 System.IO; System.Text;2.檔案的讀取 (1).使用FileStream類進行檔案的讀取,並將它轉換成char數組,然後輸出。 byte[] byData = new byte[100]; char[] charData = new char[1000]; public void Read() { try {
Time of Update: 2015-02-04
標籤: #region 擷取 本周、本月、本季度、本年 的開始時間或結束時間 /// <summary> /// 擷取結束時間 /// </summary> /// <param name="TimeType">Week、Month、Season、Year</param> /// <param name="now"></param>
Time of Update: 2015-02-04
標籤:如題,將 {OUTSCIPTE} 關鍵詞後的所有內容替換為string.Empty(包含關鍵字)這個正則該怎麼寫?我是 {OUTSCIPTE}(.*)$ 寫的但是什麼反應也沒有string
Time of Update: 2015-02-04
標籤:using System;using System.IO;using System.Security.Cryptography;namespace RijndaelManaged_Example{ class RijndaelExample { public static void Main() { try { string original = "Here is some
Time of Update: 2015-02-04
標籤:namespace test_gundong{ public partial class Form1 : Form { int current = 0; Timer timeDown = new Timer(); Timer timeUp = new Timer(); public Form1() { InitializeComponent();
Time of Update: 2015-02-04
標籤:c# 不同進位之間的轉換1.請問c#中如何將十進位數的字串轉化成十六進位數的字串//十進位轉二進位Console.WriteLine("十進位166的二進位表示: "+Convert.ToString(166, 2));//十進位轉八進位Console.WriteLine("十進位166的八進位表示: "+Convert.ToString(166, 8));//十進位轉十六進位Console.WriteLine("十進位166的十六進位表示: "+Convert.ToString(166,
Time of Update: 2015-02-04
標籤:根據網址產生頁面的方法: C#代碼 bool CreateHtmlFile(string url, string path) { //http://keleyi.com/a/bjae/3d10wfax.htm string m_content = Utils.GetHtmlByUrl(Ut
Time of Update: 2015-02-04
標籤:/* 用一片連續的儲存空間來儲存隊列中的資料元素,這樣的隊列稱為順序隊列 (Sequence Queue)。類似於順序棧,在這裡我就不做介紹了,我們直接用列表實現一個隊列 */using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace
Time of Update: 2015-02-04
標籤: 我崇尚開源的世界,My Code也會全部開源,可以傳播知識,會讓人開心快樂,也會讓自己進步,讓我們打破知識的界限,進入代碼的世界吧。 目前我這裡有多套近年來收集的代碼,有些我是滿意的,有些我不是很滿意,但是我準備把代碼給分享出來,當然是局限於小部落,不能在大的場合公然的侵犯別人的權利,希望有興趣的朋友,你有同樣的想法,你有分享的興趣,我們可以一起進群討論和交流技術。謝謝 &
Time of Update: 2015-02-04
標籤:最近在做一個小項目的時候,發現在 1680x1050 解析度顯示器上寫的代碼,將表單的寬度和高度 設定成了 1600×900,在高於1600×900的解析度上縮放顯示很正常,而後轉移到 解析度低於 1600×900 的時候縮放就不正常顯示了。 而後跟蹤 this.width
Time of Update: 2015-02-03
標籤:HoverTree開源項目中HoverTreeWeb.HVTPanel的Index.aspx檔案是後台管理的首頁。包含產生留言板首頁,以及顯示使用者名稱,退出等功能。根據網址產生頁面的方法:bool CreateHtmlFile(string url, string path){ //http://keleyi.com/a/bjae/3d10wfax.htmstring m_content = Utils.GetHtmlByUrl(Utils.GetAbsolutePath() +
Time of Update: 2015-02-03
標籤:轉載:http://www.tuicool.com/articles/3Enu2aC#語言 C#是微軟公司發布的一種物件導向的、運行於.NET Framework之上的進階程式設計語言。並定於在微軟職業開發人員論壇(PDC)上登台亮相。C#是微軟公司研究員Anders
Time of Update: 2015-02-03
標籤:C#反射技術的簡單操作(讀取和設定類的屬性)http://www.cnblogs.com/william-lin/archive/2013/06/05/3118233.html泛型方法通過反射建立類的執行個體 /// <summary> /// 擷取web服務執行個體 /// </summary> /// <typeparam name="T">服務代理類</typeparam> ///
Time of Update: 2015-02-03
標籤: 1 /// <summary> 2 /// 整個檔案夾拷貝 3 /// </summary> 4 /// <param name="yanfilepath">源</param> 5 /// <param name="mudifilepath">目標</param> 6 public void CopyFilesDirs(string
Time of Update: 2015-02-03
標籤:範例程式碼: [TestMethod()] public void DateTimeFromUnixTimestampMillisTest() { DateTime _actual = UnixEpochHelper.DateTimeFromUnixTimestampMillis(1422949956408); DateTime _expected = new DateTime(2015, 02, 0