pMixins icon indicating copy to clipboard operation
pMixins copied to clipboard

Allow Custom PMixin aggregate attributes

Open ppittle opened this issue 10 years ago • 0 comments

This should be allowed:

                           public class Mixin1
                            {
                                public int Number{ get{ return 42;} }
                            }

                            public class Mixin2
                            {
                                public int OtherNumber{ get{ return 24;} }
                            }

                            [pMixin(Mixin = typeof(Mixin1))]
                            [pMixin(Mixin = typeof(Mixin2))]
                            public class CustomPMixinsAttribute : Attribute
                            {                               
                            }

                            [CustomPMixins]                           
                            public partial class Target
                            {                                
                            }                      

ppittle avatar Aug 20 '14 13:08 ppittle