I need to create a few sequential guids:
00000000-0000-0000-00000000000000001
00000000-0000-0000-00000000000000002
...
00000000-0000-0000-00000000000000011
I need to do this just for a few tests. I do not need thousands of Guids ...
I tried the following but I get a problem when I reach 11.
for (Int32 i = 1; i < 12; i++) {
Guid guid = new Guid(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (Byte)i);
}
Any way to solve this?
Maybe transforming the int into a string with format and then to Guid?
I really don't know how to solve this ...
Thank You, Miguel