System.Collections.Specialized.ListDictionary.Add C# (CSharp) Method

Add() public method

public Add ( object key, object value ) : void
key object
value object
return void
        public void Add(object key, object value) { }
        public void Clear() { }

Usage Example

Example #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