gpt4 book ai didi

c# - 访问异常类数据属性中的字典项

转载 作者:太空宇宙 更新时间:2023-11-03 22:45:30 26 4
gpt4 key购买 nike

我在访问 Exception 类的数据属性的值时遇到困难。

try
{
string strReasonCode = String.Empty;
string strReasonDescription = String.Empty;
string strDuration = String.Empty;
string strActive = String.Empty;

if (ReasonCodeDT.Rows.Count != 1)
{
string strPracticeID = PracticeID.ToString();
string PracticeName = getSingleStringResultFromSQL("SELECT @result = PracticeName FROM Practice WHERE PracticeID = /'" + strPracticeID + "/'");
string RecordCount = ReasonCodeDT.Rows.Count.ToString();
int UserID;
Int32.TryParse(au.UserID, out UserID);
Exception ex = new Exception("Database Returned " + RecordCount + " Records for ReasonCodeID " + ReasonCodeID + " for Practice " + PracticeName + " (" + strPracticeID + ")");
ex.Data.Add("UI Error Message", "Whoops! Something went wrong there. Please call (555)555-5555" +
"and notify them something is wrong with the Encounter Reason: " + ReasonCodeID);
throw ex;
}
else
{
}
}
catch
{
pnlError.Visible = true;
lblErrorMessage.Text = ex.Data["UI Error Message"];
}

这给了我一个编译器错误信息:

Error 117 Cannot implicitly convert type 'object' to 'string'. An explicit conversion exists (are you missing a cast?)

我可以找到的所有引用资料都通过使用 foreach 循环将类型指定为 DictionaryEntry 来访问该信息,但这对于这个实例来说不是必需的/不可取的:

如何从该词典中检索单个项目?

更新

引用@dbc 关于创建自定义异常类的建议,这里有一个链接提供了更多关于我为什么不这样做的详细信息。

https://blogs.msdn.microsoft.com/jaredpar/2008/10/20/custom-exceptions-when-should-you-create-them/

请随意评论为什么异常类比使用基异常类的数据属性更好。

最佳答案

Exception.Data 是一个未类型 IDictionary :

public virtual IDictionary Data { get; }

因此 get and set accessors返回并取一个 object 类型的值,您必须将其强制转换或转换为所需的类型,例如:

public const string ExceptionMessageKey = "UI Error Message";

lblErrorMessage.Text = ex.Data[ExceptionMessageKey]?.ToString();

(其中 ?. 是 c# 6.0 null conditional operator )。或者:

lblErrorMessage.Text = ex.Data[ExceptionMessageKey] as string;

顺便说一句,如果您更熟悉通用 IDictionary<TKey, TValue> 界面,注意以下区别。使用未类型化 IDictionary 时并访问不存在的 key ,getter 文档 states :

Property Value

The element with the specified key, or null if the key does not exist.

相比之下,IDictionary<TKey, TValue> documentation说明 KeyNotFoundException找不到 key 时将抛出。没有 TryGetGetValue()对于 IDictionary .

.Net fiddle 示例 here .

更新

此外,是 const在这种情况下,关键字是强制性的还是仅是最佳实践? const 的使用这纯粹是一种很好的做法。由于您将在 Data 中获取和设置异常详细信息带有标准化键的字典,将这些键的实际值集中在代码中的一个位置是个好主意,您的 Exception 的生产者和消费者都可以使用这些值,例如一个static constants class :

public static class Constants
{
public const string ExceptionMessageKey = "UI Error Message";
}

另外,为什么必须在使用异常类的数据属性之前声明字符串常量? - 没有必要。我这样做只是为了获得 ExceptionMessageKey 的值(value)成为公共(public)常量。

当我将 null 条件运算符与您概述的语法一起使用时,我收到一个编译时错误,提示“预计会出现语法错误‘:’”。——那么您可能使用的是 c# 版本早于 6.0。如果是这样,您可以改用以下旧语法:

var value = ex.Data[Constants.ExceptionMessageKey];
string text = value == null ? null : value.ToString();

最后如Handling and throwing exceptions in .NET所述抛出一些更合适的派生类型 Exception 是个好习惯.您可以选择一个常见的、预先存在的类型,例如 ApplicationException define your own ,在这种情况下,“UI 错误消息”可以作为异常的属性而不是 Data 中的条目词典。

关于c# - 访问异常类数据属性中的字典项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50164139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com