SqlParameterCollection.cs 598 B

12345678910111213141516171819
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections.Generic;
  5. using System.Data.Common;
  6. namespace System.Data.SqlClient
  7. {
  8. partial class SqlParameterCollection :
  9. System.Collections.ICollection,
  10. System.Collections.IEnumerable,
  11. System.Collections.IList,
  12. System.Data.IDataParameterCollection
  13. {
  14. public SqlParameter Add(string parameterName, object value)
  15. => Add(new SqlParameter(parameterName, value));
  16. }
  17. }