Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Created March 23, 2017 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ufcpp/e03bab3173b3eb48f2cc45760a610730 to your computer and use it in GitHub Desktop.
Save ufcpp/e03bab3173b3eb48f2cc45760a610730 to your computer and use it in GitHub Desktop.
is var と is T の違い…
using System;
class Program
{
static void Main()
{
string s = null;
if(s is var x)
{
// ここには来る
Console.WriteLine("aaa " + x);
}
if (s is string y)
{
// ここには来ない…
Console.WriteLine("bbb " + y);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment