SILUBS.ScriptureChecks.QuotationMarkCategorizer.GetContinuationMarkForLevel C# (CSharp) Method

GetContinuationMarkForLevel() private method

Gets the paragraph continuation mark for the specified level.
private GetContinuationMarkForLevel ( int level ) : string
level int
return string
		internal string GetContinuationMarkForLevel(int level)
		{
			if (level > m_quoteMarks.Levels)
				return null;

			return (m_quoteMarks.ContinuationMark == ParagraphContinuationMark.Opening ?
				m_quoteMarks[level - 1].Opening : m_quoteMarks[level - 1].Closing);
		}