mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +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
|
public enum RefKind
|
||||||
{
|
{
|
||||||
Ref,
|
Ref,
|
||||||
|
In,
|
||||||
Out,
|
Out,
|
||||||
Mut
|
Mut
|
||||||
}
|
}
|
||||||
|
@ -1209,6 +1210,7 @@ namespace System.Reflection
|
||||||
switch (mRefKind)
|
switch (mRefKind)
|
||||||
{
|
{
|
||||||
case .Ref: strBuffer.Append("ref ");
|
case .Ref: strBuffer.Append("ref ");
|
||||||
|
case .In: strBuffer.Append("in ");
|
||||||
case .Out: strBuffer.Append("out ");
|
case .Out: strBuffer.Append("out ");
|
||||||
case .Mut: strBuffer.Append("mut ");
|
case .Mut: strBuffer.Append("mut ");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue