AODL.Document.Import.PlainText.PlainTextImporter.SetConformLineBreaks C# (CSharp) Méthode

SetConformLineBreaks() private méthode

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