2017-08-21 15:34:15 +00:00
|
|
|
using System;
|
2015-04-07 09:35:12 +01:00
|
|
|
|
2017-08-21 15:34:15 +00:00
|
|
|
public class C
|
2015-04-07 09:35:12 +01:00
|
|
|
{
|
2017-08-21 15:34:15 +00:00
|
|
|
public static void Main ()
|
2015-04-07 09:35:12 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-08-21 15:34:15 +00:00
|
|
|
bool Test1 => int.TryParse ("1", out int x);
|
|
|
|
int Test2 => int.TryParse ("2", out int x) ? x : 0;
|
2015-04-07 09:35:12 +01:00
|
|
|
}
|