CCNet.Build.Reconfigure.CCNetConfigExtensions.Tag C# (CSharp) Method

Tag() public static method

public static Tag ( this writer, string tagName ) : void
writer this
tagName string
return void
		public static void Tag(this XmlWriter writer, string tagName, params string[] attributesAndValues)
		{
			writer.StartTag(null, tagName, attributesAndValues);
			writer.WriteEndElement();
		}