是否有可能做一些這樣的:我可以在結構上創建訪問器來自動轉換爲/從其他數據類型?
struct test
{
this
{
get { /*do something*/ }
set { /*do something*/ }
}
}
所以,如果有人試圖做到這一點,
test tt = new test();
string asd = tt; // intercept this and then return something else
我不明白的問題。 – 2010-03-01 02:54:08
@John Knoeller:更新了問題 – caesay 2010-03-01 02:58:04
聽起來像是你想要一個轉換操作符... – Shog9 2010-03-01 02:58:40