示例#1
0
 protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
 {
     scope.EndsWith("table");
 }
 protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
 {
     scope.EndsWith("TABLE", StringComparison.OrdinalIgnoreCase);
 }
示例#3
0
        protected override void CreateConstraint(INegatableArgumentConstraintManager <string> scope)
        {
#pragma warning disable CA1307 // Specify StringComparison
            scope.EndsWith("table");
#pragma warning restore CA1307 // Specify StringComparison
        }