using System;
using System.Xml.Serialization;
using System.ComponentModel;
namespace XmlSerializersTest.Samples
{
[Title("Ignore a Property")]
public class IgnoreProperty
{
[XmlIgnore]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string Bomb
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
}
}
|