I have some problem with C# binary literals in Visual Studio. When I try to set some variable to binary literal I get syntax error CS1002 (need ';'). How to solve this problem? There is no problems with hexadecimal literals.
byte b = 0b00000000; // error
Screenshot of error