-3
"在庫はスーツ"と言われる部分のスーツ(子クラスの在庫)に下線が引かれる理由は誰にも分かりますか? Suit
:C#親クラスと子クラス - 親クラスから子を選ぶ
//Picking Suit out of the Stock
public System.Collections.ArrayList Suit()
{
System.Collections.ArrayList array = new System.Collections.ArrayList(); //looping through Persons array
foreach (Stock stock in allStock)//using code snippets
{
if (stock is Suit) //if it is a customer, display value, if not, return to the array list
{
array.Add(stock);
}
}
return array;
}
それは示してエラーとは何ですか? – Shaharyar
なぜArrayListを使用していますか?それはとてもそうです。コレクションは今よりはるかに優れています。 'List'を試してみてください。 –
Enigmativity