예제 #1
0
파일: XamlMember.cs 프로젝트: zsd4yr/wpf
        private string LookupConstructorArgument()
        {
            string result = null;

            if (AreAttributesAvailable)
            {
                result = _reflector.GetAttributeString(typeof(ConstructorArgumentAttribute), out _);
            }
            return(result);
        }
예제 #2
0
        private string LookupConstructorArgument()
        {
            string result = null;

            if (AreAttributesAvailable)
            {
                bool checkedInherited;
                result = _reflector.GetAttributeString(typeof(ConstructorArgumentAttribute), out checkedInherited);
            }
            return(result);
        }