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

Ask A Question

Stats

  • Questions 163k
  • Answers 163k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Based on your HTML, and assuming the ...s do not… May 12, 2026 at 12:11 pm
  • Editorial Team
    Editorial Team added an answer You have to declare the type on "the database level"… May 12, 2026 at 12:11 pm
  • Editorial Team
    Editorial Team added an answer I never did find a way to do this using… May 12, 2026 at 12:11 pm

Related Questions

I have an application with a launch page that needs to determine what is
In my application at the moment I have (as in so many other applications)
I keep typing t eh instead of the which is, of course, annoying in
When presenting preformatted text on the web (e.g. code samples), line wrapping can be

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.