/// <summary> /// Gets the name of the current project. /// </summary> /// <returns>The project name.</returns> public static string GetProjectName() { using (FStringUnsafe resultUnsafe = FStringPool.New()) { Native_FApp.GetProjectName(ref resultUnsafe.Array); return(resultUnsafe.Value); } }