BindingSource source = new BindingSource();
source.Add(new List<string>() { "1", "2", "3" });
//List<string> theList = source.List;//compile fail. Can't convert from IList to List<T> implicity
List<string> theList = source.List as List<string>;//fail, null
明示的な変換を実行するメソッドをオンラインで作成している人々を見てきました。これは、このタスクの完全なやり過ぎのようです。私のリストを取り戻すためのより良い方法はありますか?