:C#のINT-以下のコードは、最後の割り当てに失敗したオブジェクト・ツー・ダブルキャストエラー説明
static void Main(string[] args)
{
int a = 5;
object b = 5;
System.Diagnostics.Debug.Assert(a is int && b is int);
double x = (double)a;
double y = (double)b;
}
AとBの両方がint
ている場合は、このエラーの原因は何ですか?
[ボックス化された値をキャスト]可能な複製(http://stackoverflow.com/questions/5312731/casting-a-boxed-value) – Brian