[fix]Config创建默认配置文件的开关Runtime.CreateConfigOnMissing,仅需对自动创建生效,而不应该阻止用户主动Save
智能大石头 编写于 2024-08-09 00:30:41 石头 提交于 2024-08-10 14:22:24
X
#if !NET4
using System;
using System.Collections;
using System.Collections.Generic;

namespace System.Linq
{
    /// <summary>表示具有公共键的对象的集合。</summary>
    /// <typeparam name="TKey">
    ///   <see cref="T:System.Linq.IGrouping`2" /> 的键的类型。</typeparam>
    /// <typeparam name="TElement">
    ///   <see cref="T:System.Linq.IGrouping`2" /> 的值的类型。</typeparam>
    /// <filterpriority>2</filterpriority>
    public interface IGrouping<TKey, TElement> : IEnumerable<TElement>, IEnumerable
    {
        /// <summary>获取 <see cref="T:System.Linq.IGrouping`2" /> 的键。</summary>
        /// <returns>
        ///   <see cref="T:System.Linq.IGrouping`2" /> 的键。</returns>
        TKey Key
        {
            get;
        }
    }
}
#endif