在開始之前,先補充一下上一篇爛文的內(nèi)容。在上一篇文章中,老周檢討了 MemberAttributes 枚舉的用法,老周此前誤以為該枚舉不能進行按位操作,后來發(fā)現(xiàn)是可以的。不過啊,MemberAttributes 枚舉有些情況下不那么好弄,最典型的就是要生成抽象類的時候,反正老周試了很久,用MemberAttributes枚舉不能順利生成抽象類。

這時候,老周想到了 TypeAttributes,然后就試了一下。

大數(shù)據(jù)培訓,云培訓,數(shù)據(jù)挖掘培訓,云計算培訓,高端軟件開發(fā)培訓,項目經(jīng)理培訓

            CodeTypeDeclaration t = new CodeTypeDeclaration("MyClass");
            t.TypeAttributes = System.Reflection.TypeAttributes.Abstract;

            CodeMemberProperty pry = new CodeMemberProperty();
            pry.Name = "A";
            pry.Attributes = MemberAttributes.Abstract | MemberAttributes.Public;
            pry.Type = new CodeTypeReference(typeof(string));
            t.Members.Add(pry);

            CodeDomProvider p = CodeDomProvider.CreateProvider("cs");
            p.GenerateCodeFromType(t, Console.Out, null);

延伸閱讀

學習是年輕人改變自己的最好方式-Java培訓,做最負責任的教育,學習改變命運,軟件學習,再就業(yè),大學生如何就業(yè),幫大學生找到好工作,lphotoshop培訓,電腦培訓,電腦維修培訓,移動軟件開發(fā)培訓,網(wǎng)站設(shè)計培訓,網(wǎng)站建設(shè)培訓學習是年輕人改變自己的最好方式