16 lines
147 B
C#
16 lines
147 B
C#
using System;
|
|
|
|
class C
|
|
{
|
|
public static int Main ()
|
|
{
|
|
return Bar (null) ? 1 : 0;
|
|
}
|
|
|
|
static bool Bar (object t)
|
|
{
|
|
return t is object;
|
|
}
|
|
}
|
|
|