コード例 #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);
        }