protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
 {
     scope.StartsWith("ABC", StringComparison.OrdinalIgnoreCase);
 }
 protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
 {
     scope.StartsWith("abc");
 }
Ejemplo n.º 3
0
        protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
        {
#pragma warning disable CA1307 // Specify StringComparison
            scope.StartsWith("abc");
#pragma warning restore CA1307 // Specify StringComparison
        }