Files
codeql/csharp/ql/test/library-tests/csharp11/cil/Struct.cs_
2023-01-30 14:28:35 +01:00

14 lines
370 B
Plaintext

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