compiler error appears and I cannot enter the playmode whatever what I did

static public void BeginContents (bool minimalistic)
{
if (!minimalistic)
{
mEndHorizontal = true;
GUILayout.BeginHorizontal();
EditorGUILayout.BeginHorizontal(“AS TextArea”, GUILayout.MinHeight(10f));
}
else
{
mEndHorizontal = false;
EditorGUILayout.BeginHorizontal(GUILayout.MinHeight(10f));
GUILayout.Space(10f);
}
GUILayout.BeginVertical();
GUILayout.Space(2f);
}

compiler error : Unable to find style ‘AS TextArea’ in skin ‘LightSkin’ Repaint

Do anyone ever encounter this compiler error?I was trying to update the Label.text using chinese in NGUI in my script.

Thanks everyone for help

You can try this:

#if UNITY_4_7 || UNITY_5_5 || UNITY_5_6
EditorGUILayout.BeginHorizontal(“AS TextArea”, GUILayout.MinHeight(10f));
#else
EditorGUILayout.BeginHorizontal(“TextArea”, GUILayout.MinHeight(10f));
#endif