I'm一個類型別名試圖定義自己的類型別名如下:如何定義System.String^
using PrjString = System.String;
using PrjInt = System.Int32;
using PrjFloat = System.Single;
using PrjDateTime = System.DateTime;
I'm與String
型面臨的問題。當我嘗試使用字符串,並把它作爲參考:
PrjString^ name;
GetName(name); // Receives name as reference and return the gathered name
我不能編譯:
PrjString ^name: error CS0118: `string` is a `type` but is used like a `variable`
在另一方面,如果我定義:
using PrjString = System.String^;
它不編譯以及:
using PrjString = System.String^: error CS1002: ; expected
有沒有辦法爲System.String^
定義一個類型別名?
爲什麼在地球上您想要別名基本類型? – DavidG
''^是不是在C# –
這是不完全相關的問題的問題,而是i'm建立一個跨環境的SDK,我需要所有類型的被命名爲平臺之間的同正確的語法.... – Mendes