本文整理汇总了C#中System.Guid.ToStringFormatted方法的典型用法代码示例。如果您正苦于以下问题:C# Guid.ToStringFormatted方法的具体用法?C# Guid.ToStringFormatted怎么用?C# Guid.ToStringFormatted使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Guid
的用法示例。
在下文中一共展示了Guid.ToStringFormatted方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Commit
public void Commit(string productName, string author, PackagePlatform platform, int languageCode, Guid productCode)
{
IntPtr infoHandle;
ThrowOnFailure(SafeNativeMethods.MsiGetSummaryInformation(_handle, null, 20, out infoHandle));
SetProperty(infoHandle, 2, 30, 0, 0, "Installation Database");
SetProperty(infoHandle, 3, 30, 0, 0, productName);
SetProperty(infoHandle, 4, 30, 0, 0, author);
SetProperty(infoHandle, 5, 30, 0, 0, "Installer");
SetProperty(infoHandle, 7, 30, 0, 0, $"{(platform == PackagePlatform.X64 ? "x64" : "Intel")};{languageCode}");
SetProperty(infoHandle, 9, 30, 0, 0, productCode.ToStringFormatted());
SetProperty(infoHandle, 14, 3, MsiVersion, 0, string.Empty);
SetProperty(infoHandle, 15, 3, Properties, 0, string.Empty);
ThrowOnFailure(SafeNativeMethods.MsiSummaryInfoPersist(infoHandle));
ThrowOnFailure(SafeNativeMethods.MsiCloseHandle(infoHandle));
ThrowOnFailure(SafeNativeMethods.MsiDatabaseCommit(_handle));
}
示例2: WriteProperties
private void WriteProperties(Guid productCode)
{
Write("Property", "ALLUSERS", 1);
Write("Property", "ARPNOMODIFY", 1);
Write("Property", "ARPNOREPAIR", 1);
Write("Property", "Manufacturer", _package.Author);
Write("Property", "ProductLanguage", CultureInfo.CurrentCulture.LCID);
Write("Property", "ProductName", _package.ProductName);
Write("Property", "ProductCode", productCode.ToStringFormatted());
Write("Property", "ProductVersion", _package.Version.ToString());
Write("Property", "SecureCustomProperties", "NEWERVERSIONDETECTED;OLDERVERSIONBEINGUPGRADED");
Write("Property", "UpgradeCode", _package.UpgradeCode.ToStringFormatted());
}