所有属性的FieldQuotes
本文关键字:FieldQuotes 属性 | 更新日期: 2023-09-27 18:29:46
有像FieldQuotes这样的属性可以应用于属性吗?
此外,是否可以自动将FieldQuotes添加到所有字段中,这样我就不必为每个字段定义它了?
您要查找的属性是FieldQuoted
。文档在这里。
一些例子:
[FieldQuoted()] // Quoted with "
public string CustomerName
[FieldQuoted('[')] // Quoted between [brackets]
public string CustomerName
[FieldQuoted('"', QuoteMode.OptionalForBoth)] // Optional quoted when read or write
public string CustomerName
[FieldQuoted('"', MultilineMode.AllowForBoth)] // Indicates that the quoted string can span multiple lines
public string CustomerName
你确实需要申请到每一个领域。