using System.Collections; namespace PrefsGUI { /// /// PrefsDictionary, PrefsListなどでUI用に内部のListにアクセスするためのクラス /// public interface IListAccessor where TList: IList { TList InnerList { get; set; } } }