我有以下代碼。在這段代碼中,我能夠通過使用eventHandling獲得像1,2,3等字符串值。如何獲取值並不重要now.What我現在需要的是能夠訪問這個字符串值在page_load事件之外,如函數myfun()
,如下所示。我該如何實現這一目標。在c#中創建一個局部變量值global#
protected void Page_Load(object sender, EventArgs e)
{
hfm mymaster = (hfm)Page.Master;
lcont lc = mymaster.getlcont();
lc.myevent += delegate(string st)
{
//slbl.Text = st;
string str =st;
}
}
protectd void myfun()
{
//i want to access the string value "st" here.
}
在類作用域中定義它而不是委託範圍或將其作爲參數傳遞給'myfun()' –