ComponentFactory.Krypton.Ribbon.EncryptedLicenseProvider.ArraySize C# (CSharp) Méthode

ArraySize() private static méthode

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
Résultat int
        private static int ArraySize(int length)
        {
            return length;
        }