Closed winxalex closed 8 years ago
Strange. Sorry - but without example i can't fix it
Write code from the screens
public static void MyFunc(out GUIContent[] displayOptions){
List<GUIContent> guiContentList=new List<GUIContent>();
displayOptions=guiContetentList.ToArray();
}
Hm, reproduced
Simple example
namespace AA
{
public static class Test
{
public static void test(out string[] t)
{
string[] otherParams = new string[0];
t = otherParams;
}
}
}