Ejemplo n.º 1
0
 static KeyFormat InjectGuidsInConstantIds(KeyFormat result)
 {
     return(result.Terms.All(x => x is LiteralText)
         ? new KeyFormat(result.Terms.Concat(new[] { new GuidKeyword() }))
         : result);
 }
Ejemplo n.º 2
0
 protected bool Equals(KeyFormat other)
 {
     return(pattern.ToString().Equals(other.pattern.ToString()));
 }