// /// Gets or sets the value of the property with the specified name.
// /// In C#, this property is the indexer of the PropertyTable class.
// ///
// public object this[string key]
// {
// get { return propValues[key]; }
// set { propValues[key] = value; }
// }
//
// ///