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);
		}
	}