6992685b86
Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
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;
|
|
}
|
|
}
|