SoftBasicGetExceptionMessage 方法 (Exception) |
获取一个异常的完整错误信息
Gets the complete error message for an exception
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static string GetExceptionMessage(
Exception ex
)
Public Shared Function GetExceptionMessage (
ex As Exception
) As String
public:
static String^ GetExceptionMessage(
Exception^ ex
)
static member GetExceptionMessage :
ex : Exception -> string
参数
- ex
- 类型:SystemException
异常对象
返回值
类型:
String完整的字符串数据
异常 异常 | 条件 |
---|
NullReferenceException | ex不能为空 |
备注 获取异常的完整信息
示例 try
{
int i = 0;
int j = 10 / i;
}
catch(Exception ex)
{
Console.WriteLine( SoftBasic.GetExceptionMessage( ex ) );
}
参见