PersonalizationDictionary Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the PersonalizationDictionary class.
Overloads
PersonalizationDictionary() |
Initializes a new instance of the PersonalizationDictionary class. |
PersonalizationDictionary(Int32) |
Initializes a new instance of the PersonalizationDictionary class using the provided parameter. |
PersonalizationDictionary()
Initializes a new instance of the PersonalizationDictionary class.
public:
PersonalizationDictionary();
public PersonalizationDictionary ();
Public Sub New ()
Remarks
This constructor initializes an empty dictionary. The dictionary will treat key values as case-insensitive.
Applies to
PersonalizationDictionary(Int32)
Initializes a new instance of the PersonalizationDictionary class using the provided parameter.
public:
PersonalizationDictionary(int initialSize);
public PersonalizationDictionary (int initialSize);
new System.Web.UI.WebControls.WebParts.PersonalizationDictionary : int -> System.Web.UI.WebControls.WebParts.PersonalizationDictionary
Public Sub New (initialSize As Integer)
Parameters
- initialSize
- Int32
The estimated number of entries to be stored in the dictionary.
Remarks
This constructor initializes an empty dictionary based on the estimated number of entries to be stored in the dictionary. The dictionary will treat key values as case-insensitive.