私の質問は、この割り当てが c# でどのように行われるかということです。つまり、答え 1 (257) をどのように計算し、0 (256) をどのように計算するのでしょうか?
コードは次のとおりです。
int intnumber=257;
byte bytenumber=(byte)intnumber;//the out put of this code is 1
int intnumber=256;
byte bytenumber=(byte)intnumber;//the out put of this code is 0
私の質問は、最初のコードの出力が:1 で、2 番目のコードの出力が:0 であるということです。