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:
parent
da23ba4aa7
commit
97221d541a
1 changed files with 2 additions and 0 deletions
|
@ -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 ");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue