求IDictionaryPtr接口说明
rt scrrun.dll里实现的IDictionaryPtr接口有哪些功能?里面像
inline HRESULT IDictionary::Add ( VARIANT * Key, VARIANT * Item ) {
HRESULT _hr = raw_Add(Key, Item);
if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
return _hr;
}
这样的Add函数有什么用
[解决办法]
以下链接仅供参考:
http://msdn.microsoft.com/en-us/library/system.collections.idictionary(VS.71).aspx