MonoDevelop.Projects.Formats.MSBuild.MSBuildObject.AddChildElement C# (CSharp) Méthode

AddChildElement() protected méthode

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