Configuration to the Framework GAC (Global Assembly Cache) Assembly

Source: Internet
Author: User

There are usually two ways to configure to the Framework, one is to put it directly to the GAC (the Global Assembly cache function can hold some public Assembly that many programs use), and the other is to put them in a specific program directory.

To put it in the GAC, the easy way is to simply drag and drop the satellite accessory into the "windows/assembly" directory, or use the Microsoft-provided tool gacutil, using the following command:

Gacutil/i:localizerres.zh-chs.resources.dll

If you don't put it in the GAC, put it in the same directory as your program (see Using the official Chinese resources Method).

Ways to use official Chinese resources:

1. static void Main ()
{
Application.enablevisualstyles ();
Application.setcompatibletextrenderingdefault (FALSE);
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo ("Zh-chs"); Add this line of code
Application.Run (New Form1 ());
}

2. Copy the ZH-CN and Zh-cns two directories from the Chinese official Chinese resources package to your program directory

Configuration to the Framework GAC (Global Assembly Cache) Assembly

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.