Avoid packing the string. Format method.

Source: Internet
Author: User

Avoid packing the string. Format method.

 

We know that the string. Format method may be boxed. For example:

 

        static void Main(string[] args)
        {
String s = string. Format ("splicing {0} and {1}", 1, 2 );
            Console.WriteLine(s);
            Console.ReadKey();
        }

 

The last two parameters received by the string. Format () method are of the object type. Therefore, packing exists here.

 

Check the IL code:

 

→ Open "Developer command prompt"


→ Navigate to the application folder


→ Use ildasm to view the application's il code and output it to the txt file



Open 1.txt text file in Notepad



→ I saw two times of packing in the IL code.

 

If string is frequently called multiple times in our application. the Format method, such as logging, causes many times of binning of the value type, which also results in many memory allocations and many times of garbage collection.

 

How can this problem be solved?
-- Concatenate strings

 

The modification code is as follows:

 

        static void Main(string[] args)
        {
String s = "splicing" + 1. ToString () + "and" + 2. ToString ();
            Console.WriteLine(s);
            Console.ReadKey();
        }

 

We can see that String concatenation prevents the occurrence of packing.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.