我看了IEnumerable接口的定义
public interface IEnumerable
{
// Summary:
// Returns an enumerator that iterates through a collection.
//
// Returns:
// An System.Collections.IEnumerator object that can be used to iterate through
// the collection.
[DispId(-4)]
IEnumerator GetEnumerator();
}
我不明白这个属性是什么[DispId(-4)]
以及为什么它的值等于-4
?
谢谢,