System.Collections.Specialized.ListDictionary.Add C# (CSharp) Méthode

Add() public méthode

public Add ( object key, object value ) : void
key object
value object
Résultat void
        public void Add(object key, object value) { }
        public void Clear() { }

Usage Example

Exemple #1
0
 public virtual void SearchByCityIDAndCountryID(int cityID, int countryID)
 {
     ListDictionary parameters = new ListDictionary();
     parameters.Add(new SqlParameter("@CityID", SqlDbType.Int), cityID);
     parameters.Add(new SqlParameter("@CountryID", SqlDbType.Int), countryID);
     base.LoadFromSql("[" + this.SchemaStoredProcedure + "usp_BlogPage_SearchByCityIDAndCountryID]", parameters);
 }
All Usage Examples Of System.Collections.Specialized.ListDictionary::Add