public IStringMutator SetNext(IStringMutator next)
 {
     throw new System.NotImplementedException();
 }
Пример #2
0
 public IStringMutator SetNext(IStringMutator next)
 {
     _next = next;
     return(next);
 }
Пример #3
0
 public virtual IStringMutator SetNext(IStringMutator next)
 {
     this.stringMutator = next;
     return(next);
 }