Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created April 24, 2012 00:49
Show Gist options
  • Save ledsun/2475066 to your computer and use it in GitHub Desktop.
Save ledsun/2475066 to your computer and use it in GitHub Desktop.
dynamicと参考演算子
dynamic hoge = true ? "a" : 1; //'string' と 'int’ の間に暗黙的な変換がないため、条件式の型がわかりません。
dynamic fuga;
if (true)
{
fuga = "a";
}
else
{
fuga = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment