ICSharpCode.TextEditor.FoldMargin.SelectedFoldingFrom C# (CSharp) Method

SelectedFoldingFrom() private method

private SelectedFoldingFrom ( List list ) : bool
list List
return bool
		bool SelectedFoldingFrom(List<FoldMarker> list)
		{
			if (list != null) {
				for (int i = 0; i < list.Count; ++i) {
					if (this.selectedFoldLine == list[i].StartLine) {
						return true;
					}
				}
			}
			return false;
		}