0
類
我有3類:如何泡了一個布爾值,從內包含的類外包含
class A
{
public B b = new B();
public bool flag {get; set;}
}
class B
{
piblic C c = new C();
}
class C
{
public void foo()
{
//iterates a dataTable with column "someBoolCondition"
// I want to set A's bool to true, after the first record that has 'true' in column
//"someBoolCondition". Thus is thought to avoid bool memebers in each class.
}
}
什麼是最好的方式設定A的標誌爲「真」由C的富?
TIA
你能用一些代碼來舉例說明你的描述嗎? –
請粘貼一些代碼,不清楚「B」是嵌套類「A」還是「A」包含類型「B」的對象,以及「B」和「C」之間的關係。 –