Когда я пишу такой код
[XmlIgnore]
[NonSerialized]
public List<string> paramFiles { get; set; }
Я получаю следующую ошибку:
Attribute 'NonSerialized' is not valid on this declaration type.
It is only valid on 'field' declarations.
Если я напишу
[field: NonSerialized]
Я получаю следующее предупреждение
'field' is not a valid attribute location for this declaration.
Valid attribute locations for this declaration are 'property'.
All attributes in this block will be ignored.
Если я напишу
[property: NonSerialized]
Я получаю следующую ошибку (снова):
Attribute 'NonSerialized' is not valid on this declaration type.
It is only valid on 'field' declarations.
Как я могу использовать [NonSerialized]
на имущество?