<-- Previous || Up || Next -->

Make Byte Fast Function
Coerce Make Class

Public Function MakeByteFast( _
    ByVal vValue As Byte _
    ) As String

"Make String From Byte (Fast)" or "Coerce Byte To String (Fast)"
Coerce a Byte value into a 1-character string.
Return the one-character string whose in-memory representation is same as the Byte value vValue.
Faster version of the MakeByte function which has restrictive argument types (to avoid argument fix-up overhead).

Examples:
    MakeByteFast(0) = Chr$(0)
    MakeByteFast(1) = Chr$(1)
    MakeByteFast(255) = Chr$(255)
    MakeByteFast("34") = Chr$(51)
See also:
    MakeByte Function
    CoerceToByteFast Function
    MakeVarType Function
vValue: The Byte value which will be returned as a one-character string.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.