VSTalk.Engine.ViewModel.Messenger.ThreadRenderer.Model.ConversationModel.AddBefore C# (CSharp) Method

AddBefore() public method

public AddBefore ( ConversationSection section, ConversationSection point ) : void
section ConversationSection
point ConversationSection
return void
        public void AddBefore(ConversationSection section, ConversationSection point)
        {
            var index = _sections.IndexOf(point);
            _sections.Insert(index, section);
            Document.Blocks.InsertBefore(point.Content, section.Content);
        }