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

IsFinalPunctuation() private method

Determines whether [is final punctuation] [the specified quotation mark].
private IsFinalPunctuation ( string closing ) : bool
closing string
return bool
		internal bool IsFinalPunctuation(string closing)
		{
			foreach (QuotationMarks qmark in m_quoteMarks.QMarksList)
			{
				if (closing == qmark.Closing)
					return true;
			}

			return false;
		}