public static string GetAChatGroup(uint groupId) { char[] des = new char[2048]; unsafe { fixed(char *str = des) { ServerCoreLoader.GetAChatGroup(groupId, str, 2048); } } return(new string(des)); }