ComponentFactory.Krypton.Ribbon.EncryptedLicenseProvider.ArraySize C# (CSharp) Method

ArraySize() private static method

Return the array size to use when declaring an array of the given length.
This is used to account for the difference between declaring VB and C# arrays and permit automatic conversion of the code to VB
private static ArraySize ( int length ) : int
length int The length of the array you are declaring
return int
        private static int ArraySize(int length)
        {
            return length;
        }