所以我想打開動態類是類似的東西:如何在「使用」定義部分中將靜態類打開爲靜態?
using System ...
...
using System.Windows.Forms;
using core = new myNamespace.myClass(); // Sure it doesn't work but how to realize it ?
當我做
使用myNamespace.myClass();我不能使用它,因爲myClass是動態的,但我希望它創建,因爲這個類創建並正在處理它。我想有機會varables/MyClass的方法aslike從這個類,像
core.X必須爲X.
也許我只是想類似的接口相同,但作爲一類。
好,我會盡量正是我想解釋一下:
比如我已經得到了部分課程,而且每一個有2個文件!和...第二個文件的內容是相同的。我如何爲所有部分類使用一個文件?像一個模塊,但沒有前綴!
,所以我知道我的英語是不完美的,我會加一個代碼示例:
public partial class FRIIB : Form
{
private string x = username;
}
public partial class FRIIB : Form
{
private string username = "hi";
}
public partial class LOLO : Form
{
private string x = username;
// I don't want to create another file with "username" definition
}
我想使用Mixin ...它看起來就像正是我想要得到。
你的代碼內使用using語句混亂的(這保證的Dispose()被調用)?因爲你試圖做的事情是不可能的。 – SirViver 2011-05-16 10:54:56
你想創建myClass的別名嗎? – 2011-05-16 10:54:57
你希望實現什麼?你爲什麼想這樣做? – 2011-05-16 10:55:21