gpt4 book ai didi

c# - 调用 FileHelperEngine 构造函数时 PresentationFramework.dll 中的 XamlParseException

转载 作者:太空狗 更新时间:2023-10-30 00:03:04 24 4
gpt4 key购买 nike

A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll
Additional information: 'The invocation of the constructor on type 'filehelpertest.MainWindow' that matches the specified binding constraints threw an exception.' Line number '3' and line position '9'.

大家好

我是 FileHelpers 的新手。

为了隔离这个问题,我在 VS Express 2013 中创建了一个最小的 WPF 项目。代码是从 FileHelpers 文档中的“定界文件快速入门”部分复制的。

我尝试引用 FileHelpers.dll 的 3 个不同版本(2.0、1.1、Mono1.2),并尝试重新启动。但是我看不到任何效果。一定有一些非常简单的东西是我遗漏的吧?

或者 FileHelpers 是否不适用于较新版本的 .NET?

谢谢!

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using FileHelpers;

namespace filehelpertest
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
FileHelperEngine engine = new FileHelperEngine(typeof(Customer));
// To Read Use:
Customer[] res = engine.ReadFile("f1.txt") as Customer[];
// To Write Use:
engine.WriteFile("f2.txt", res);
}

[DelimitedRecord(",")]
public class Customer
{
public int CustId;
public string Name;
}
}
}

最佳答案

我的问题的解决方案与 XAML Parse Exception - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 上接受的答案相同

我做了 CTRL-ALT-E 然后检查了一切。现在弹出窗口显示实际异常而不是 xamlparseexception。

关于c# - 调用 FileHelperEngine 构造函数时 PresentationFramework.dll 中的 XamlParseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17993622/

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