Files
codeql/csharp/ql/test/library-tests/csharp11/Struct.cs
2023-01-31 13:35:47 +01:00

14 lines
370 B
C#

namespace structassembly;
public class MyEmptyClass { }
public ref struct RefStruct
{
public int MyInt;
public ref byte MyByte;
public ref object MyObject;
internal ref MyEmptyClass MyEmptyClass;
public ref readonly byte MyReadonlyByte;
public readonly ref object MyReadonlyObject;
public readonly ref readonly string MyReadonlyString;
}