Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i select language in Visual Studio auto-generated comments?

I'm very wondering because in Visual Studio sometimes auto generated comments are not a English.

For example, when i create the ATL project,

// DLL이 OLE에 의해 언로드될 수 있는지 결정하는 데 사용됩니다.
STDAPI DllCanUnloadNow(void)
{
    return _AtlModule.DllCanUnloadNow();
}

Yes, I'm using Visual Studio with Korean language pack.

So, Visual Studio auto-generated comments are Korean.

How can i change comments language?

like image 212
Joy Hyuk Lee Avatar asked Aug 18 '14 05:08

Joy Hyuk Lee


People also ask

How do I change the Language on Visual Studio?

You can change the menu language in the Visual Studio options. 1. Select the Options command in the Tools menu and Environment > International Settings in the options dialog which then opens. The Language area displays the languages (in this case German, English).

How do I comment in Visual Studio?

Comment Code Block Ctrl+K+C/Ctrl+K+U If you select a block of code and use the key sequence Ctrl+K+C, you'll comment out the section of code. Ctrl+K+U will uncomment the code.


1 Answers

I installed the English language pack. And now VS is generated comment in English!

like image 66
Joy Hyuk Lee Avatar answered Sep 22 '22 07:09

Joy Hyuk Lee