摘要:
/// /// 將byte型轉換為字符串 /// /// byte型數組 /// 目標字符串 private string ByteArrayToString(byte[] arrInput) { int i; StringBuilder sOutput = new StringBuilder(arrInput.Length); for (i = 0; i /// 對接收到的數據進行解包(...
閱讀全文
摘要:
出現這樣的錯誤,往往和動態庫有關系! 解決方法:
閱讀全文
摘要:
官方幫助http://space.cnblogs.com/forum/topic/8550 注:如果自動配置沒有成功,需要手動配置: a) 在“Type of weblog that you are using”中選擇“Custom(Metaweblog API)”。b) “Remote posting URL for your weblog”中輸入“http://www.rzrgm.cn...
閱讀全文
摘要:
1.本地修改了內容,但是沒有commit可以通過Revert…來覆蓋當前版本。 2.已經commit了。首先第一步,應該知道需要回滾的版本編號, 第二步,選擇 updata to revision
閱讀全文
摘要:
1.cmd 輸入route print2.route delete 0.0.0.0 刪除0.0.0.03.route add -p 0.0.0.0 task 0.0.0.0 192.168.8.1 添加網關192.168.8.14.ping 2端網口對端ip即可
閱讀全文