internal NamingConventionsBuilder(NamingConventions.Direction direction)
        {
            this.ConventionDirection = direction;

            this.Fields     = new BigCammelCase();
            this.Methods    = new BigCammelCase();
            this.Properties = new BigCammelCase();

            this.MemberScanningPrecedence = new[] { MemberType.Property, MemberType.Method, MemberType.Field };
        }
 internal GlobalNamingConventionsBuilder(NamingConventions.Direction direction)
     : base(direction)
 {
     this.aConditionalConventionList = new List <NamingConventionsBuilder>();
 }
Example #3
0
 internal ConditionalNamingConventionsBuilder(NamingConventions.Direction direction, PatternGroup typePatterns)
     : base(direction)
 {
     this.aTypePatterns = typePatterns;
 }