Compartilhar via


Tipo de dado SByte (Visual Basic)

Holds signed 8-bit (1-byte) integers that range in value from -128 through 127.

Comentários

Use the SByte data type to contain integer values that do not require the full data width of Integer or even the half data width of Short. In some cases the common language runtime might be able to pack your SByte variables closely together and save memory consumption.

The default value of SByte is 0.

Programming Tips

  • CLS Conformidade. The SByte data type is not part of the CLS (Common Language Specification) (CLS), so CLS-compliant code cannot consume a component that uses it.

  • Alargamento. The SByte tipo de dados widens to Short, Integer, Long, Decimal, Single, and Double. This means you can convert SByte to any of these types without encountering a System.OverflowException error.

  • Tipo Caracteres. SByte tem nenhum caractere de tipo literal ou identificador tipo de caractere.

  • Framework Type. O tipo correspondente na.NET Framework é o System.SByte estrutura.

Consulte também

Referência

Resumo de tipo de dados (Visual Basic)

System.SByte

Funções de conversão de tipo (Visual Basic)

Resumo de conversão (Visual Basic)

Tipo de dados Short (Visual Basic)

Tipo de Dados Inteiro (Visual Basic)

Tipo de dados Long (Visual Basic)

Conceitos

Uso eficiente de tipos de dados (Visual Basic)