This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace System.Linq
{
/// <summary>Represents a collection of objects that have a common key.</summary>
/// <typeparam name="TKey">The type of the key of the <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
/// <typeparam name="TElement">The type of the values in the <see cref="T:System.Linq.IGrouping`2" />.</typeparam>
// Token: 0x02000041 RID: 65
[Token(Token = "0x2000041")]
public interface IGrouping<out TKey, out TElement> : IEnumerable<TElement>, IEnumerable
{
/// <summary>Gets the key of the <see cref="T:System.Linq.IGrouping`2" />.</summary>
/// <returns>The key of the <see cref="T:System.Linq.IGrouping`2" />.</returns>
// Token: 0x17000043 RID: 67
// (get) Token: 0x0600021B RID: 539
[Token(Token = "0x17000043")]
TKey Key
{
[Token(Token = "0x600021B")]
[Address(Slot = "0")]
get;
}
}
}