我有一个用户报告此例外。我在这里和其他地方的研究表明这是一个静态的构造函数错误。有关的类包含许多初始化的静态字段。我认为这是其中之一,但我不知道如何找到它。建议似乎是在静态构造函数中包含try / catch块。如上所述,没有明确的静态构造函数。
我在想我应该编写一个显式的静态构造函数,将静态字段的初始化移动到它中并将它们包装在try / catch块中。我知道我可以尝试这个,但错误不会出现在我身上,我想发送一个modded可执行文件给用户试试。我的应用程序会记录错误,所以如果在静态构造函数中捕获到异常,我应该从他那里得到一个日志。
该类的相关(我希望)部分在这里(它实际上不是我的代码,但我可以根据需要修改它):
[Serializable]
public class PText : PNode, ISerializable {
//comments elided by edit for brevity
#region Fields
public const int PROPERTY_CODE_FONT = 1 << 18;
public const int PROPERTY_CODE_TEXT = 1 << 17;
public static Font DEFAULT_FONT = new Font("Arial", 12);
protected static readonly object PROPERTY_KEY_FONT = new object();
protected static readonly object PROPERTY_KEY_TEXT = new object();
private static Graphics GRAPHICS = Graphics.FromImage(new Bitmap(1, 1));
[NonSerialized]
private Color brushColor;
private bool constrainHeightToTextHeight = true;
private bool constrainWidthToTextWidth = true;
private Font font;
[NonSerialized]
private Color penColor;
[NonSerialized]
private StringFormat stringFormat = new StringFormat();
private String text;
[NonSerialized]
private Brush textBrush;
#endregion Fields
#region Constructors
public PText() {
textBrush = Brushes.Black;
}
public PText(String aText)
: this() {
Text = aText;
}
protected PText(SerializationInfo info, StreamingContext context)
: base(info, context) {
textBrush = PUtil.ReadBrush(info, "textbrush");
TextAlignment = (StringAlignment)info.GetValue("alignment", typeof(int));
}
#endregion Constructors
.......
答案 0 :(得分:2)
最好的调试方法,需要最少的代码更改(假设这是一个桌面应用程序?)可能会挂钩AppDomain.UnhandledException
事件 - 在Program.cs
的启动代码中订阅它然后你就可以发现任何异常。
根据您实际发布的代码,它是:
public static Font DEFAULT_FONT = new Font("Arial", 12);
或者
private static Graphics GRAPHICS = Graphics.FromImage(new Bitmap(1, 1));
鉴于只有一个用户报告它,如果我是对的,那么逻辑指示('once you eliminate the impossible'和所有这一切)必须是他们没有Arial
字体他们的机器;听起来很疯狂。
或者 - 因为我已经被正确地提醒(以及为什么我仅根据您发布的代码将其限定为有效) - 它也可以是PNode
类型中定义的静态或任何其他地方的静态在类型层次结构中。在例外中报告的“xx
”类是什么?
答案 1 :(得分:2)
要回答你的问题,你的想法很好。对可能出现的行进行try / catch,然后在错误成为TypeInitializationException之前记录错误。
或者,更改为使用Lazy - 这会将异常更改为首次访问它的位置。这可能对您有用,也可能没有用,但它帮助我调试了类似的问题。