VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.ImageFiles Namespace / ImageFileSource Class / ToUInt64(UInt64) Method
Syntax Remarks Requirements SeeAlso
In This Topic
    ToUInt64(UInt64) Method (ImageFileSource)
    In This Topic
    Converts 64-bit unsigned value from little-endian format to format of this ImageFileSource.
    Syntax
    'Declaration
    
    <CLSCompliantAttribute(False)>
    Public Overridable Function ToUInt64( _
    ByVal value
    64-bit unsigned value stored in little-endian format.
    As ULong _
    ) As ULong
    [CLSCompliant(False)]
    public virtual ulong ToUInt64(
    ulong value
    )
    [CLSCompliant(False)]
    public: virtual ulong ToUInt64(
    ulong value
    )
    [CLSCompliant(False)]
    public:
    virtual ulong ToUInt64(
    ulong value
    )

    Parameters

    value
    64-bit unsigned value stored in little-endian format.

    Return Value

    64-bit unsigned value stored in format of this ImageFileSource.
    Remarks

    This method does not change value. Method must be overridden in derived class if conversion is necessary.

    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