VSTalk.Engine.ViewModel.Messenger.ThreadRenderer.Model.ConversationModel.AddAfter C# (CSharp) Méthode

AddAfter() public méthode

public AddAfter ( ConversationSection section, ConversationSection point ) : void
section ConversationSection
point ConversationSection
Résultat void
        public void AddAfter(ConversationSection section, ConversationSection point)
        {
            var index = _sections.IndexOf(point);
            _sections.Insert(index + 1, section);
            Document.Blocks.InsertAfter(point.Content, section.Content);
        }