点击或拖拽改变大小

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
)

参数

ex
类型:SystemException
异常对象

返回值

类型:String
完整的字符串数据
异常
异常条件
NullReferenceExceptionex不能为空
备注
获取异常的完整信息
示例
GetExceptionMessage示例
try
{
    int i = 0;
    int j = 10 / i;
}
catch(Exception ex)
{
    Console.WriteLine( SoftBasic.GetExceptionMessage( ex ) );
}
参见