可能重複:
how to make an variable accessible to other class(within same csproj)如何訪問一個類的屬性在另一類LINQ
我有一個變量
int principleIndex = Principles.Instance.RowIndexToPrincipleIndex(hti.Row);
我想在其他類中使用它linq查詢:
principlesList.Select(p => p.GetInstanceForDatabase()).where(p=>p.principleIndex).ToList()
但是principleIndex
不能在這裏訪問。
我該怎麼做?我試圖讓它變成靜態的,我也嘗試在屬性中使用它,但不起作用。
可能是一個錯字,但是'principleIndex'!='principleindex' - 檢查變量的大小寫。 – 2012-02-25 10:44:36
是的,這是一個打字錯誤,變量是一樣的,請告訴我怎麼做 – neeraj 2012-02-25 10:48:05
你需要顯示更多的代碼,因爲這不清楚。什麼是'GetInstanceForDatabase()'返回? – 2012-02-25 10:54:40