/// <summary> /// Gets the name of the version control branch that this application was built from. /// </summary> /// <returns>The branch name.</returns> public static string GetBranchName() { using (FStringUnsafe resultUnsafe = FStringPool.New()) { Native_FApp.GetBranchName(ref resultUnsafe.Array); return(resultUnsafe.Value); } }