StyleCopPlus.Plugin.MoreCustom.NumericValue.CreateTabSize C# (CSharp) 메소드

CreateTabSize() 공개 정적인 메소드

Creates numeric value holding tab chars count.
public static CreateTabSize ( ) : NumericValue
리턴 NumericValue
        public static NumericValue CreateTabSize()
        {
            return new NumericValue(4, 1, 100);
        }

Usage Example

예제 #1
0
 /// <summary>
 /// Initializes a new instance.
 /// </summary>
 public CharLimitOptionsData()
     : base(
         NumericValue.CreateCharLimit(),
         OptionsDataResources.LimitOptionsCharFormat)
 {
     m_tabSize = NumericValue.CreateTabSize();
 }