nedcomp hosting homepage

Producten en Diensten
Dedicated servers
Datacenter informatie
Partners, resellers
Helpdesk informatie
Technische docs, tools
Support homepage
ASP componenten
Praktische ASP, ASP.NET
Visual route server
Whois (domein gegevens)
Software documentatie
Whitepapers
Zoeken
Nedcomp / algemeen

Zoeken
 

Copyright © Nedcomp Hosting
Telefoon nr :   +31 184 670111
Fax nummer :   +31 184 631384
E-mailadres :   info@nedcomp.nl
 

C# Programmer's Reference  

| Operator

Binary | operators are predefined for the integral types and bool. For integral types, | computes the bitwise OR of its operands. For bool operands, | computes the logical OR of its operands; that is, the result is false if and only if both its operands are false.

expr1 | expr2

Where:

expr1
An expression.
expr2
An expression.

Remarks

User-defined types can overload the | operator (see operator).

Example

// cs_operator_OR.cs
using System;
class Test 
{
   public static void Main() 
   {
      Console.WriteLine(true | false);  // logical or
      Console.WriteLine(false | false); // logical or
      Console.WriteLine("0x{0:x}", 0xf8 | 0x3f);   // bitwise or
   }
}

Output

True
False
0xff

See Also

C# Operators | 7.10 Logical operators