NewCSharpWork
NewCSharpWork

Reputation: 89

C# How i can convert " * " in byte

Is this possible to convert * in byte? I have a program where i need to use only byte and the problem is : all my command start by this character. Thanks you for help !

Upvotes: 0

Views: 45

Answers (1)

TheGeneral
TheGeneral

Reputation: 81563

Maybe

byte myAwesomeByte = (byte)'*'

Upvotes: 1

Related Questions