私はarraylistにオブジェクトを追加して後でそれを返す方法を見つけようとしています。 私のコードは以下の通りです:私はいくつかの方法を試してみましたが、半分の時間で検索しましたArrayListで返されたオブジェクトを返す
mediaTitleCollection = new ArrayList();
public BookMedia CreateBookTitle(string title, string subtitle, string edition, string author, string genre, int weight, int units, string isbn, int pages, int chapters)
{
mediaTitleCollection.Add(new BookMedia(title, subtitle, edition, author, genre, weight, units, isbn, pages, chapters));
// Return the object i have just added in mediaTitleCollection
}
、カントは...事前に
おかげで私の質問への適切な解決策を見つけるように見えます。答え以下
アイテムが正常かどうか – Xitrum