Open
Description
All of the below are available by "take state" but are all type definitions so should be available via "take class" or "take type":
public interface InterfaceTestCase
{
//Some text to select in the interface
}
public delegate string DelegateClassTestCase(
string name);
public record Point(int x, int y);
public enum DirectionTestCase
{
Up,
Down,
Left,
Right,
}
public struct DifferentPoint
{
int x, y;
}