コード例 #1
0
        public void MarkAsChanged(TextAssociation file)
        {
            if (file == null)
            {
                throw new ArgumentNullException(nameof(file));
            }

            _textAssociations.AddOrUpdate(file);
        }
コード例 #2
0
 public void Remove(TextAssociation file)
 {
     _textAssociations.Remove(file);
 }
コード例 #3
0
 public void Remove(TextAssociation file)
 {
     _textAssociations.Remove(file);
 }
コード例 #4
0
        public void MarkAsChanged(TextAssociation file)
        {
            if (file == null) throw new ArgumentNullException(nameof(file));

            _textAssociations.AddOrUpdate(file);
        }