< Serializable() > class sample
{ /* ... */ }
(Serializable()) class sample
{ /* ... */ }
[ Serializable() ] class sample
{ /* ... */ }
Serializablef) class sample
{ /* ... */ }
[ Serializable() ] class sample
{ /* ... */ }
byte b1 = 0xAB; byte b2 = 0x99; byte temp; temp = (byte)~b2; Console.Write(temp + " "); temp = (byte)(b1 << b2); Console.Write (temp + " "); temp = (byte) (b2 >> 2); Console.WriteLine(temp);
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.