How can u execute preloaded code in a c# kata.
I keep getting an error that the global namespace allready contains a definition for the Class in the Code block.
using System;
public static class Kata
{
public static void test()
{
Person p = new Person();
}
}