Unicoen.Model.UnifiedElement.XmlWrite C# (CSharp) Method

XmlWrite() private static method

private static XmlWrite ( object obj, string content, StringBuilder buffer, int depth ) : void
obj object
content string
buffer System.Text.StringBuilder
depth int
return void
		private static void XmlWrite(
				object obj, string content, StringBuilder buffer, int depth) {
			if (obj != null) {
				if (!content.Equals("")) {
					PrintTabs(1, buffer);
					buffer.AppendLine(content);
				}
			}
		}