AODL.Document.Import.PlainText.PlainTextImporter.SetConformLineBreaks C# (CSharp) 메소드

SetConformLineBreaks() 개인적인 메소드

Sets the conform line breaks.
private SetConformLineBreaks ( string text ) : string
text string The text.
리턴 string
		private string SetConformLineBreaks(string text)
		{
			return text.Replace(
				ParagraphBuilder.ParagraphSeperator2, ParagraphBuilder.ParagraphSeperator);
		}
	}