Patcher.Data.SkyrimDataContext.GetIgnoredFormKinds C# (CSharp) 메소드

GetIgnoredFormKinds() 보호된 메소드

protected GetIgnoredFormKinds ( ) : IEnumerable
리턴 IEnumerable
        protected override IEnumerable<FormKind> GetIgnoredFormKinds()
        {
            // Convert string[] to FormType[] only now when needed as not to allocate FormType values needlessly
            return hiddenFormTypes.Select(t => (FormKind)t).ToArray();
        }