Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 136523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:57:43+00:00 2026-05-11T06:57:43+00:00

In the application, when special types of objects are created, I need to generate

  • 0

In the application, when special types of objects are created, I need to generate a unique-id for each of them. The objects are created thro’ a factory and have a high possibility of being created in a ‘bulk’ operation. I realize that the ‘Random’ from the framework is not so ‘random’ after all, so I tried appending the time-stamp as follows:

private string GenerateUniqueId() {     Random randomValue = new Random();     return DateTime.Now.Ticks.ToString() + randomValue.Next().ToString(); } 

Unfortunately, even this does not work. For objects that are created in rapid succession, I generate the same Unique Id 🙁

Currently, I am implementing it in a crude way as follows:

private string GenerateUniqueId() {     Random randomValue = new Random();     int value = randomValue.Next();     Debug.WriteLine(value.ToString());     Thread.Sleep(100);     return DateTime.Now.Ticks.ToString() + value.ToString(); } 

Since this is not a very large application, I think a simple and quick technique would suffice instead of implementing an elaborate algorithm.

Please suggest.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T06:57:43+00:00Added an answer on May 11, 2026 at 6:57 am

    A GUID is probably what you’re looking for:

    private string GenerateUniqueId() {     return Guid.NewGuid().ToString('N'); } 

    If you want a smaller, more manageable ID then you could use something like this:

    private string GenerateUniqueId() {     using (var rng = new RNGCryptoServiceProvider())     {         // change the size of the array depending on your requirements         var rndBytes = new byte[8];         rng.GetBytes(rndBytes);         return BitConverter.ToString(rndBytes).Replace('-', '');     } } 

    Note: This will only give you a 64-bit number in comparison to the GUID’s 128 bits, so there’ll be more chance of a collision. Probably not an issue in the real world though. If it is an issue then you could increase the size of the byte array to generate a larger id.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how to get font name used by special application in my pc i have
I have a server application that receives some special TCP packet from a client
I have an application that has to deal with getting special characters in its
We need a special user control for our web application. It should ideally look
I have a Qt application, that reads a special text file, parses it and
I have an application that generates xml files, and they might contain special characters.
In my web application i have statistics which shown for each user separately ie.
I have a client/server application (asp.net), which has a textarea which a user types
Background: I'm writing a 'standard' (nothing special) web application in Ruby (not Rails) and
I am using an application in c++ that uses a special dprintf function to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.