VSTalk.Engine.ViewModel.Messenger.ThreadRenderer.Model.ConversationModel.AddBefore C# (CSharp) Метод

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

public AddBefore ( ConversationSection section, ConversationSection point ) : void
section ConversationSection
point ConversationSection
Результат void
        public void AddBefore(ConversationSection section, ConversationSection point)
        {
            var index = _sections.IndexOf(point);
            _sections.Insert(index, section);
            Document.Blocks.InsertBefore(point.Content, section.Content);
        }