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`
c#, vb.net
`flags = flags Or MyEnum.SomeFlag`
What is the equivalent of the |= operator in Visual Basic? For example (C#): `flags |= MyEnum.SomeFlag`