0

文字列でリストを作成し、int 値を追加および取得しようとするような一般的なリストで型キャストできますか... 例:

class Program
{
    static void Main()
    {
    List<int> list = new List<int>();
    list.Add(2);
    list.Add(3);
    list.Add("prakash");
    list.Add("arun");
    }
    for (int i = 0; i < list.Count; i++) // Loop through List with for
    {
        Console.WriteLine(list[i]);
    }
}
4

1 に答える 1