重複の可能性:
直接キャスト vs 'as' 演算子?
コードのスニペットの実際の違いを教えてくれる人はいますか?
var unknown = (object)new List<string>();
// Snippet 1: as operator
foreach (var item in unknown as IList<int>) {
// Do something with item
}
// Snippet 2: cast operator
foreach (var item in (IList<int>)unknown) {
// Do something with item
}