Xceed .NET Libraries Documentation
Xceed.Compression Assembly / Xceed.Compression.LZMA Namespace / LZMAOptions Class / DictionarySize Property


In This Topic
    DictionarySize Property
    In This Topic
    Get or sets the dictionary size.
    Syntax
    'Declaration
     
    Public Property DictionarySize As Integer
    'Usage
     
    Dim instance As LZMAOptions
    Dim value As Integer
     
    instance.DictionarySize = value
     
    value = instance.DictionarySize
    public int DictionarySize {get; set;}

    Property Value

    A value representing the dictionary size to use in megabytes. By default, 8 MB.
    Remarks
    The size must be between 1 byte and 1 GB.
    To decompress data compressed with a dictionary size of D, you'll need about D bytes of memory.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also