Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#で同じList<>に異なるデータ型を入れることは可能ですか?
myList.Add("ジョー");
myList.Add(25);
Java を使用していると仮定すると、はい。Java ではすべてがオブジェクトであり、配列はオブジェクトを取ります。幸運を祈ります。