/// <summary> /// Gets the unique version string for this build. This string is not assumed to have any particular format other being a unique identifier for the build. /// </summary> /// <returns>The build version</returns> public static string GetBuildVersion() { using (FStringUnsafe resultUnsafe = FStringPool.New()) { Native_FApp.GetBuildVersion(ref resultUnsafe.Array); return(resultUnsafe.Value); } }