|   | RadixCodecRadix256 Property | 
        
        
            Gets a radix-256 value encoding.
            
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntax Remarks
Remarks
            int.MaxValue encodes to "Āƀƀƀ", 4 characters
            int.MinValue encodes to "-ā000", 5 characters -- base 256 reduces 32-bit integer sizes to a maximum of 5 characters
            uint.MaxValue encodes to "ƀƀƀƀ", 4 characters -- base 256 reduces 32-bit unsigned integer sizes to a maximum of 4 characters
            long.MaxValue encodes to "Āƀƀƀƀƀƀƀ", 8 characters
            long.MinValue encodes to "-ā0000000", 9 characters
            ulong.MaxValue encodes to "ƀƀƀƀƀƀƀƀ", 8 characters
            
 See Also
See Also