1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Added "In" to RefKind

This commit is contained in:
Simon Lübeß 2023-08-24 13:07:06 +02:00
parent da23ba4aa7
commit 97221d541a

View file

@ -1187,6 +1187,7 @@ namespace System.Reflection
public enum RefKind
{
Ref,
In,
Out,
Mut
}
@ -1209,6 +1210,7 @@ namespace System.Reflection
switch (mRefKind)
{
case .Ref: strBuffer.Append("ref ");
case .In: strBuffer.Append("in ");
case .Out: strBuffer.Append("out ");
case .Mut: strBuffer.Append("mut ");
}