.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
509 B

// 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.Xml;
namespace Ricciolo.StylesExplorer.MarkupReflection
{
internal class XmlBamlText : XmlBamlNode
{
private string _text;
public XmlBamlText(string text)
{
_text = text;
}
public string Text
{
get { return _text; }
}
public override System.Xml.XmlNodeType NodeType
{
get
{
return XmlNodeType.Text;
}
}
}
}