コード例 #1
0
        public override void Rename(FileSystemComponent component, string newName)
        {
            var oldComponent = _localComponents.FirstOrDefault(x => x == component);

            oldComponent.Name = newName;

            _localComponents[_localComponents.IndexOf(component)] = oldComponent;
        }
コード例 #2
0
 public override void Rename(FileSystemComponent component, string newName)
 {
 }
コード例 #3
0
 public override void Remove(FileSystemComponent component)
 {
 }
コード例 #4
0
 public override void Add(FileSystemComponent component)
 {
 }
コード例 #5
0
 public override void Remove(FileSystemComponent component)
 {
     _localComponents.Remove(component);
 }
コード例 #6
0
 public override void Add(FileSystemComponent component)
 {
     _localComponents.Add(component);
 }
コード例 #7
0
 public abstract void Rename(FileSystemComponent component, string newName);
コード例 #8
0
 public abstract void Remove(FileSystemComponent component);
コード例 #9
0
 public abstract void Add(FileSystemComponent component);