CCNet.Build.Confluence.PageDocumentExtensions.RemoveIfExists C# (CSharp) 메소드

RemoveIfExists() 공개 정적인 메소드

Removes specified attribute, allows null to be passed.
public static RemoveIfExists ( this attribute ) : void
attribute this
리턴 void
		public static void RemoveIfExists(this XAttribute attribute)
		{
			if (attribute == null)
				return;

			attribute.Remove();
		}
	}