/// <summary> /// Remove all properties from the properties collection /// </summary> /// <remarks> /// <para> /// Remove all properties from the properties collection /// </para> /// </remarks> public override void Clear() { InnerHashtable.Clear(); }
/// <summary> /// 清空 /// </summary> public new void Clear() { InnerHashtable.Clear(); innerValues.Clear(); innerKeys.Clear(); }
public void Clear() { OnClear(); InnerHashtable.Clear(); OnClearComplete(); }
void IDictionary.Clear() { InnerHashtable.Clear(); }