CSharpToSwift icon indicating copy to clipboard operation
CSharpToSwift copied to clipboard

Find types declared in files with file-scoped namespaces

Open rdavisau opened this issue 1 year ago • 0 comments

Allows types in files using file-scoped namespaces to be collected for transpilation.

e.g.:

MyEnum.cs

namespace Test;

public enum MyEnum
{
    A,
    B,
    C
}

rdavisau avatar Nov 14 '23 13:11 rdavisau