
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections; // 加入才看得到ArrayList
me1237guy 發表在 痞客邦 留言(0) 人氣(217)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleEnum
{
class EnumTest
{
enum MyColor
{
Red,
Blue,
Green
}
static void Main(string[] args)
{
Console.WriteLine("紅色: " + MyColor.Red);
Console.WriteLine("綠色: " + MyColor.Green);
Console.WriteLine("藍色: " + MyColor.Blue);
Console.WriteLine("紅色: " + (int)MyColor.Red);
Console.WriteLine("綠色: " + (int)MyColor.Green);
Console.WriteLine("藍色: " + (int)MyColor.Blue);
me1237guy 發表在 痞客邦 留言(0) 人氣(201)

Donwloading JAVA JDK….the size is about 1.45GB
me1237guy 發表在 痞客邦 留言(0) 人氣(8)

>> mex –setup安裝套件檔案好大啊!!!475MB網路設定IP address請輸入想指定的IP Address, 記住不要跟你目前電腦設成同一組才不會衝突!!!電腦與樹梅派的IP必須相同網段例如192.168.1.xxx放入裝有樹梅派的SD卡寫入firmware image 容量大小:1.85G將寫入韌體的SD卡插上RaspberryPI, 然後開機測試本地端電腦是否可以連線樹梅派
me1237guy 發表在 痞客邦 留言(0) 人氣(408)

下圖中紅色塑膠套: 可以接四組天線安裝Driver================================================================ 安裝UHF Reader Utility==================================================================RS485轉TCP/IP執行tdst-5-09-10-x64.exe
me1237guy 發表在 痞客邦 留言(0) 人氣(49)

解決方法:Visual Studio上面的選單->偵測->例外狀況->Click “Managed Debugging Assistnats”Uncheck ”LoaderLock” that will solve the problem!!!測試
me1237guy 發表在 痞客邦 留言(1) 人氣(1,900)

// ex13Interest.h
#pragma once
using namespace System;
namespace ex13Interest {
me1237guy 發表在 痞客邦 留言(0) 人氣(890)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
me1237guy 發表在 痞客邦 留言(0) 人氣(3,039)

[AJAX/安裝] 無法載入檔案或組件 Web.Extensions 1.0 解決方式
有看到Web.Extension關鍵字的都是和AJAX有關的組件
如果明明在測試機開發上,AJAX都正常執行,部署到正式機時
me1237guy 發表在 痞客邦 留言(0) 人氣(713)

參考資料: RaspiCam: C++ API for using Raspberry camera with/without OpenCv 編輯程式
me1237guy 發表在 痞客邦 留言(0) 人氣(2,386)