¡@

Home 

c# Programming Glossary: queryflag

How can I know items is in the enum?

http://stackoverflow.com/questions/3748516/how-can-i-know-items-is-in-the-enum

between enum with Flags attribute as following Flags enum QueryFlag None 0x1 ByCustomer 0x2 ByProduct 0x4 ByDate 0x8 QueryFlag flags.. QueryFlag None 0x1 ByCustomer 0x2 ByProduct 0x4 ByDate 0x8 QueryFlag flags QueryFlag.ByCustomer QueryFlag.ByProduct To add an QueryFlag.. ByCustomer 0x2 ByProduct 0x4 ByDate 0x8 QueryFlag flags QueryFlag.ByCustomer QueryFlag.ByProduct To add an QueryFlag of course..