поразрядное ИЛИ с присваиванием

a |= 5 аналогично a = a | 5
Скрыть

Показать

Копировать
  Main.cs  
  • using System;
  •  
  • class Program {
  •  public static int Main() {
  •   int a = 3;
  •   a|=4;
  •   Console.WriteLine(a);
  •   Console.ReadKey();
  •   return 0;
  •  }
  • }
7