本文整理匯總了C#中System.Exception.HResult屬性的典型用法代碼示例。如果您正苦於以下問題:C# Exception.HResult屬性的具體用法?C# Exception.HResult怎麽用?C# Exception.HResult使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Exception
的用法示例。
在下文中一共展示了Exception.HResult屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: unchecked
// Example for the Exception.HResult property.
using System;
namespace NDP_UE_CS
{
// Create the derived exception class.
class SecondLevelException : Exception
{
const int SecondLevelHResult = unchecked( (int)0x81234567 );
// Set HResult for this exception, and include it in
// the exception message.
public SecondLevelException( string message, Exception inner ) :
base( string.Format( "(HRESULT:0x{1:X8}) {0}",
message, SecondLevelHResult ), inner )
{
HResult = SecondLevelHResult;
}
}
class HResultDemo
{
public static void Main()
{
Console.WriteLine(
"This example of Exception.HResult " +
"generates the following output.\n" );
// This function forces a division by 0 and throws
// a second exception.
try
{
try
{
int zero = 0;
int ecks = 1 / zero;
}
catch( Exception ex )
{
throw new SecondLevelException(
"Forced a division by 0 and threw " +
"a second exception.", ex );
}
}
catch( Exception ex )
{
Console.WriteLine( ex.ToString( ) );
}
}
}
}
輸出:
NDP_UE_CS.SecondLevelException: (HRESULT:0x81234567) Forced a division by 0 and threw a second exception. ---> System.DivideByZeroException: Attempted to divi de by zero. at NDP_UE_CS.HResultDemo.Main() --- End of inner exception stack trace --- at NDP_UE_CS.HResultDemo.Main()