MonoDevelop.Projects.Formats.MSBuild.MSBuildPropertyGroup.RemoveProperty C# (CSharp) Méthode

RemoveProperty() public méthode

public RemoveProperty ( string name ) : bool
name string
Résultat bool
		public bool RemoveProperty(string name)
		{
			MSBuildProperty prop = GetProperty(name);
			if (prop != null)
			{
				properties.Remove(name);
				Element.RemoveChild(prop.Element);
				return true;
			}
			return false;
		}