Aspose.Words.Examples.CSharp.Loading_Saving.Worker.MakeTopicTitle C# (CSharp) Method

MakeTopicTitle() private static method

Removes the last character (which is a paragraph break character from the given string).
private static MakeTopicTitle ( string paraText ) : string
paraText string
return string
        private static string MakeTopicTitle(string paraText)
        {
            return paraText.Substring(0, paraText.Length - 1);
        }