How do i convert Guid.NewGuid() to int?
| show 6 more comments |
|
You don't. GUIDs are not integers and can't be converted to integers. Not sure where your From MSDN:
An
So, you can't convert from Edit (following comments on question): So, you want a unique identifier and can't do it in the database. Again, Guid will not suit your needs, as it is not guaranteed to unique. The address space is so large that chances of a collision are very small, but not impossible. In order to generate a unique Id, you have several approaches, depending on your needs. If you just need Id's during runtime and they do not need to be persisted (so on per single run), you can use a static field and increment it every time you need a new id. If you do need to persist it, you can do so in DB or an other shared resource (file on a network share, for example). In either case, you need to think about concurrency and how to handle it if you have multiple threads/clients requiring new Ids. The ideal scenario is to change your DB to generate these for you with an |
|||||||||||||||||
|
|
What about this? No ints, not CLS compliant, but still...
|
||||
|
|
|
If you want to crush the information in a GUID (128 bits) down into an int (32 bits) so you can, lets say, use it as the seed for the random number generator:
That is destructive in that the original 128 bit number is gone but it preserves the total entropy in those bits. Or to put it another way this maps the total GUID space to the total int space. Many GUIDs will produce the same int but maybe thats fine for your application. |
|||
|
|
You can't. a GUID is a 128 bit-value. An int is 32 Bit. So if you would convert it anyhow, you would loose a big part of the GUID's value. you could copy them into an array of 4 ints like this:
or, easier:
|
||||
|
A guid has a lot more information than a single int can hold. Therefore, this is not possible. Do you mean to convert a guid to multiple ints? Update Based on your comments, I think the guid is not the central point of your problem. Here two ideas that may help:
|
|||||||||||
|
|
EDIT: My previous answer would not work, as pointed out by @Hans_Passant. However, if you are using .NET 4.0, you can utilize the BigInteger class:
See http://msdn.microsoft.com/en-us/library/dd268207.aspx. As others have mentioned, you can't convert a GUID to an int -- not because GUID is not a number (it's just bytes, so it can be interpreted as a number) -- but because an int (System.Int32) is only 32 bits, while a GUID is 128 bits. Alternatively, you could represent a GUID as four Int32 values. |
|||||||||
|
|
You cant, if you shorten the GUID there is a much higher likelihood of it not being unique (as oppose of using something like SHA1). There's information like time, machine address and some random values unlike SHA which is just a very random number based on the input. If you want the 16bytes for the GUID you can use ToByteArray and store it as a BLOB or array in a file. Or you can dump the GUID string by using .ToString() which is nicely formatted. |
|||
|
|
|
This question is a bit dated... Assuming you want a somewhat random int, perhaps has a seed for new Random(seedInt) ... Here's an example from a project I am working on...
|
|||
|
|
|
Depending on the amount of "unique" identifiers you need, a random int might be enough, for instance, it is very likely that geeting a random int twice or tree times will wield diferent numbers, however if you need a billion of those identifiers an int will not give you enough probability of "uniquiness" in this case you can get a arbitrarely big random number with:
where n is the amount of bits you need |
|||
|
long). – R. Martinho Fernandes Dec 23 '10 at 12:21inttype? – Cody Gray Dec 23 '10 at 12:28