111,096
社区成员




public Presentation Presentation
,都没有被序列化。[XmlInclude(typeof(List<XMLPNode>))]
[Serializable]
public class XMLConnectionPoints : List<XMLPNode>
{
private Presentation _oPresentation;
private Extent _oExtent;
private string _strNumPoints;
private string _strFlowIn;
private string _strFlowOut;
public XMLConnectionPoints()
{
_oPresentation = new Presentation();
_oExtent = new Extent();
}
[XmlElement]
public Presentation Presentation
{
get { return _oPresentation; }
set { _oPresentation = value; }
}
[XmlInclude(typeof(XMLConnectionPoints))]