如果value是空格,则不会调用FileHelpers FieldConverter

时间:2014-11-11 18:35:08

标签: c# filehelpers fixed-length-record

我正在尝试使用FileHelpers解析文件。我需要将字段映射到KeyValuePair,并且对于其中一些字段,如果文件中的字符串是空格,则存在映射。但是,当文件中的字符串是空格时,似乎不会调用我的自定义FieldConverter的FieldToString方法。我希望它被召唤!

这是我的字段定义:

[FieldFixedLength(1)]
[FieldTrim(TrimMode.Right)]
[FieldConverter(typeof(AreYouOneOfTheFollowingConverter))]
public KeyValuePair<int, string>? AreYouOneOfTheFollowing;

这是我的转换器([case&#34;&#34;:]永远不会被击中):

public class AreYouOneOfTheFollowingConverter : ConverterBase
{
    public override object StringToField(string from)
    {
        switch (from)
        {
            case "1":
                {
                    return new KeyValuePair<int, string>(1469, "Yes");
                }
            case " ":
                {
                    return new KeyValuePair<int, string>(1470, "No");
                }
            default:
                {
                    if (String.IsNullOrWhiteSpace(from))
                    {
                        return from;
                    }
                    else
                    {
                        throw new NotImplementedException();
                    }
                }
        }
    }
}

想法?

1 个答案:

答案 0 :(得分:1)

ConverterBase有一个虚拟方法,您可以覆盖该方法来控制空格的自动处理。

public class AreYouOneOfTheFollowingConverter : ConverterBase
{
    protected override bool CustomNullHandling
    {
        /// you need to tell the converter not 
        /// to handle empty values automatically
        get { return true; } 
    }

    public override object StringToField(string from)
    {
         /// etc...
    }
}