A new feature in C# 6.0 allows to declare variable inside TryParse method. I have some code:
string s = \"Hello\"; if (int.TryParse(s, out var result)) { }
Just found out by accident, in vs2017, you can do this for brevity:
if (!Int64.TryParse(id, out _)) { // error or whatever... }