3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
12 lines
209 B
C#
12 lines
209 B
C#
using System;
|
|
|
|
public static class Test {
|
|
public static void Main() {
|
|
RunTest(() => Console.WriteLine ($"Initializing the map took {1}ms"));
|
|
}
|
|
|
|
static void RunTest (Action callback)
|
|
{
|
|
callback();
|
|
}
|
|
} |