What is the equivalent of |= in Visual Basic?

c#, vb.net

Solution

`flags = flags Or MyEnum.SomeFlag`

Problem

What is the equivalent of the |= operator in Visual Basic? For example (C#): `flags |= MyEnum.SomeFlag`

Original source