public void WriteToAnotherBlockNextTime() { var block = new MemberSubSection(); SubSections.Add(block); m_BlockToWriteTo++; }
internal override void ParseString(string st) { var remainingLines = new List <string>(st.SplitLines()); while (remainingLines.Any()) { var block = new MemberSubSection(); var miniBlockParser = new TxtMiniBlockParser(block); miniBlockParser.ProcessOneMeaningfulBlock(ref remainingLines); //block.EnforcePunctuation (); _memDocModel.SubSections.Add(block); } }
protected MiniBlockParser(MemberSubSection theBlock) { m_TheBlock = theBlock; }
protected internal MemMiniBlockParser(MemberSubSection block) : base(block) { }
public TxtMiniBlockParser(MemberSubSection block) : base(block) { }