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 6168047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:37:07+00:00 2026-05-23T22:37:07+00:00

I would like to declare (and randomize) about 500 strings. I believe I have

  • 0

I would like to declare (and randomize) about 500 strings.

I believe I have two options here:

1: Create an array with a size of 500.

string[] x = new string[500];

for(int i = 0; i < 500; i++)
{
    x[i] = Randomize_thisString(); // Some routine 
}

2: Declare (and randomize) 500 different strings.

string string_one = Randomize_thisString();
string string_two = Randomize_thisString();
string string_n = Randomize_thisString(); 

...

Which one of these would be the faster method, and does anyone know of a third option here?

Thank you,

Evan

  • 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. Editorial Team
    Editorial Team
    2026-05-23T22:37:08+00:00Added an answer on May 23, 2026 at 10:37 pm

    I will go with first choice, since this will just run once and it not takes much time.

    An idea on how create a function to generate the random string I will uses System.IO.Path.GetRandomeFileName()
    The testing code:

    System.IO.Path.GetRandomFileName();
    
    Stopwatch watch = Stopwatch.StartNew();
    string[] x = new string[500];
    
    for (int i = 0; i < 500; i++)
    {
        x[i] = System.IO.Path.GetRandomFileName();
    }
    
    watch.Stop();
    Console.WriteLine(watch.ElapsedMilliseconds);
    

    result is 2.

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

Sidebar

Related Questions

I have an array arryImages which I would only like to declare once and
Here's the SQL I would like run: DECLARE @StartDt DATETIME, @EndDt DATETIME SET @StartDt='2009-01-01'
I would like to declare a pointer to a pointer in objective-c. I have
I have a class Element which extends Node. I would like to declare a
I have recently read about how cursors should be avoided. Well, I would like
I would like to declare a variable 'XMLOutput' and have it produce the contents
Let's say I have a class. I would like to declare a property in
I would like to declare a record in Delphi that contains the same layout
I would like to declare a dropdown box in a view in an ASP.NET
I would like to declare an external function from the kernel32.dll library whose name

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.