概要
public class ExampleClass { public ExampleClass() { var str = ""; // error CS1525: Unexpected symbol `ref' Example( str1 : ref str, str2 : out str ); } public void Example( ref string str1, out string str2 ) { str2 = ""; } }
Unityでは名前付き引数とref、outキーワードを併用できないようです