Browse by Tags
All Tags »
C# (RSS)
Sorry, but there are no more tags available to filter with.
UID (unique identification) generation is a really hot topic. It can be really simple as well as really complex. Before going deep in the subject let’s do a couple of simple samples. To identify a person (citizen) you usually use the SSN (Social Security
Read More...
Many times we design our special kind of bit field to manage bitwise operations on enums. Here a simple example: [ Flags ] public enum ConsoleModiefiers { Alt = 2, Control = 4, Shift = 8 } When the number of values becomes higher, we have a little readibility
Read More...