Esempio n. 1
0
        public static bool IsParameterless(this ConstructorInfo info)
        {
            info.AssertNotNull(nameof(info));

            return(!info.GetParameters().Any());
        }