c042cd0c52
Former-commit-id: 4610231f55806d2a05ed69e5ff3faa7336cc1479
15 lines
187 B
C#
15 lines
187 B
C#
class Test
|
|
{
|
|
int? _state;
|
|
public bool Working () => _state?.ToString () != "";
|
|
|
|
public static int Main ()
|
|
{
|
|
var t = new Test ();
|
|
if (!t.Working ())
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|