536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
22 lines
383 B
C#
22 lines
383 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
public static int Main ()
|
|
{
|
|
Console.WriteLine (M (1));
|
|
try {
|
|
Console.WriteLine (M (null));
|
|
} catch (Exception) {
|
|
Console.WriteLine ("thrown");
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static string M (object data)
|
|
{
|
|
return data?.ToString () ?? throw null;
|
|
}
|
|
} |