的類型 「System.Windows.Markup.XamlParseException」第一次機會異常出現在 PresentationFramework.dll
其他信息時:「的 對類型構造函數調用'filehelpertest.MainWindow'與 匹配指定的綁定約束引發異常。'行號「3」和 行位置「9」。XamlParseException在PresentationFramework.dll調用FileHelperEngine構造
大家好,
我是新來FileHelpers。
我在VS Express 2013中做了一個最小的WPF項目,以便隔離這個問題。 代碼從FileHelpers文檔中的「分隔文件快速入門」部分複製而來。
我已經嘗試引用FileHelpers.dll(2.0,1.1,Mono1.2)的3個不同版本,並且我嘗試了重新啓動。但是我看不到任何效果。必須有一些非常簡單的東西我錯過了嗎?
或者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;
}
}
}
我期望異常中有更多信息 - 一個內部異常,指出MainWindow構造函數中出錯的地方。你應該看看那個。 –
謝謝,我同意,但我不知道在哪裏/如何看到更多信息...這是一個截圖:http://i.imgur.com/s7LUOzV.png – gus
所以你選擇「休息」選項和你應該得到更多的信息... –