I am sending a ref parameter; want to return an out parameter. Would I also need to create another method along with the ref method?
This is some context to what I am working on: "Create an internal static void method that receives degrees Celsius as a ref parameter and returns degrees Fahrenheit as an out parameter. There is no input or output in this method."
internal static void(ref int c, out int f){
f = c + 32;
return f;
}