Open.Core.LogWriter.NewSection C# (CSharp) Метод

NewSection() публичный Метод

Inserts a new section divider.
public NewSection ( ) : void
Результат void
        public void NewSection()
        {
            if (!CanWrite) return;
            if (!canInsertSection) return;

            View.Divider(LogDivider.Section);
            canInsertSection = false;
        }
        #endregion