Example #1
0
 internal MapJoiner(Joiner joiner, string keyValueSeparator)
 {
     this.joiner            = joiner; // only "this" is ever passed, so don't checkNotNull
     this.keyValueSeparator = CheckNotNull(keyValueSeparator);
 }
Example #2
0
 internal UseForNullJoiner(Joiner prototype, string nullText) : base(prototype.separator)
 {
     this.nullText = nullText;
 }
Example #3
0
 internal SkipNullsJoiner(Joiner prototype) : base(prototype.separator)
 {
 }