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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:08:46+00:00 2026-05-14T02:08:46+00:00

This is not a question of premature optimization per se. On the garbage collector

  • 0

This is not a question of premature optimization per se. On the garbage collector and memory in general, what would hundreds of ToUpper() operations (many could be duplicated) do to a program, mainly in regard to the immutability of strings?

  • 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-14T02:08:47+00:00Added an answer on May 14, 2026 at 2:08 am

    Each call to ToUpper will create a new string instance, even if the contents is the same as the original, and even if the string already exists as an interned string literal.

    So, the impact of hundreds of ToUpper calls is that you create hundreds of string instances. If the strings are short, this is not a problem, especially if you only use the strings for a short time. The garbage collector is made to handle small, short lived objects efficiently.

    Example:

    // Interned string literals are the same instance:
    string a = "asdf";
    string b = "asdf";
    Console.WriteLine(Object.ReferenceEquals(a, b)); // True
    
    // ToUpper naturally creates a new instance if the content is changed:
    string c = b.ToUpper();
    Console.WriteLine(Object.ReferenceEquals(b, c)); // False
    
    // ToUpper creates a new instance even if the content is unchanged:
    string d = c.ToUpper();
    Console.WriteLine(Object.ReferenceEquals(c, d)); // False
    
    // ToUpper will not intern strings:
    string e = "ASDF";
    string f = e.ToUpper();
    Console.WriteLine(Object.ReferenceEquals(e, f)); // False
    
    // Dynamically created strings can be interned manually:
    string g = String.Intern(f);
    Console.WriteLine(Object.ReferenceEquals(e, g)); // True
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This not a programming question but Most of the programmers using Eclipse should have
This is not a question about a specific framework. I am using plain php
This is not a question about jQuery, but about how jQuery implements such a
This is not a question, more like sharing with others a problem I encountered
(Note: This is not a question about what is the best way with code
Disclaimer: this is not a question about how to install asp.net or an application
Please note this is not a question about online/hosted SVN services. I am working
I really hope this is not a question posed by millions of newbies, but
i have a very simple question, actually this is not the question, this is
this is not a question as i think its discussion, i know you cant

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.