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

GetCloserForLevel() private method

Gets the closing quotation mark for the specified level.
private GetCloserForLevel ( int level ) : string
level int
return string
		internal string GetCloserForLevel(int level)
		{
			return (level > m_quoteMarks.Levels ? null : m_quoteMarks[level - 1].Closing);
		}