MonoDevelop.Projects.Formats.MSBuild.MSBuildObject.AddChildElement C# (CSharp) Method

AddChildElement() protected method

protected AddChildElement ( string name ) : XmlElement
name string
return System.Xml.XmlElement
		protected XmlElement AddChildElement(string name)
		{
			XmlElement e = elem.OwnerDocument.CreateElement(null, name, MSBuildProject.Schema);
			elem.AppendChild(e);
			return e;
		}