This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,36 @@
using System;
using System.Runtime.InteropServices;
namespace System.Collections
{
/// <summary>Enumerates the elements of a nongeneric dictionary.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000134 RID: 308
[ComVisible(true)]
public interface IDictionaryEnumerator : IEnumerator
{
/// <summary>Gets both the key and the value of the current dictionary entry.</summary>
/// <returns>A <see cref="T:System.Collections.DictionaryEntry" /> containing both the key and the value of the current dictionary entry.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
/// <filterpriority>2</filterpriority>
// Token: 0x17000292 RID: 658
// (get) Token: 0x06000FEB RID: 4075
DictionaryEntry Entry { get; }
/// <summary>Gets the key of the current dictionary entry.</summary>
/// <returns>The key of the current element of the enumeration.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
/// <filterpriority>2</filterpriority>
// Token: 0x17000293 RID: 659
// (get) Token: 0x06000FEC RID: 4076
object Key { get; }
/// <summary>Gets the value of the current dictionary entry.</summary>
/// <returns>The value of the current element of the enumeration.</returns>
/// <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.IDictionaryEnumerator" /> is positioned before the first entry of the dictionary or after the last entry. </exception>
/// <filterpriority>2</filterpriority>
// Token: 0x17000294 RID: 660
// (get) Token: 0x06000FED RID: 4077
object Value { get; }
}
}