System.Reflection.Module.IsResourceInternal C# (CSharp) 메소드

IsResourceInternal() 개인적인 메소드

private IsResourceInternal ( ) : bool
리턴 bool
        internal extern bool IsResourceInternal();

Usage Example

        public static IList<CustomAttributeData> GetCustomAttributes(Module target)
        {
            if (target == null)
                throw new ArgumentNullException("target");

            if (target.IsResourceInternal())
                return new List<CustomAttributeData>();

            return GetCustomAttributes(target, target.MetadataToken);
        }
All Usage Examples Of System.Reflection.Module::IsResourceInternal