Skip to content

C# Improve class/type scope types #1193

Open
@JohnEfford

Description

@JohnEfford

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;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions