VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles Namespace / ImageFileSource Class / ReadChars Methods / ReadChars(Int32) Method
Syntax Requirements SeeAlso
In This Topic
    ReadChars(Int32) Method (ImageFileSource)
    In This Topic
    Reads count characters from the stream of the image file, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream.
    Syntax
    'Declaration
    
    Public Overloads Function ReadChars( _
    ByVal count
    The number of characters to read.
    As System.Int32 _
    ) As Char[]
    public char[] ReadChars(
    System.Int32 count
    )
    public: char[] ReadChars(
    System.Int32 count
    )
    public:
    char[] ReadChars(
    System.Int32 count
    )

    Parameters

    count
    The number of characters to read.

    Return Value

    A characters array containing data read from the stream of the image file. This might be less than the number of bytes requested if the end of the stream is reached.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also