You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static ref int Max(ref int first, ref int second, ref int third)
{
ref int max = first > second ? ref first : ref second;
return max > third ? ref max : ref third;
}
The text was updated successfully, but these errors were encountered:
考虑支持 ref return方法的代理 dotnet/roslyn#118
The text was updated successfully, but these errors were encountered: