/ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/XmlBamlNode.cs
http://github.com/icsharpcode/ILSpy · C# · 21 lines · 16 code · 3 blank · 2 comment · 0 complexity · 312f4600be5ffb438a668da4204ca5da MD5 · raw file
- // Copyright (c) Cristian Civera (cristian@aspitalia.com)
- // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml;
- namespace Ricciolo.StylesExplorer.MarkupReflection
- {
- internal class XmlBamlNode
- {
- public virtual XmlNodeType NodeType
- {
- get { return XmlNodeType.None;}
- }
- }
- internal class XmlBamlNodeCollection : List<XmlBamlNode>
- {}
- }