How do you create Custom Dictionary? What is the use of it?

Questions by christopher3_83

Showing Answers 1 - 6 of 6 Answers

dipayan samanta

  • Jul 17th, 2007
 

goto>control panel->system->advanced->user variables.

goto the Path title and edit it. Add the path of C# compiler. then save and exit. it's same as SETPATH in JAVA. the you can create your dir anywhere in your HDD and run program from DOS prompt.

  Was this answer useful?  Yes

PeterVH

  • Aug 19th, 2011
 

If you mean under Visual Studio 2008 and upwards, the custom dictionary is to have abbreviations or words or whatever recognized by the code analysis.

Silly example, You have a Company Officer, which you abbreviate always to CO. However, you have a function that checks if this CO is in the database.

CamelCased => "IsCOInDatabase(string nameOfCO)"

Code analysis will flag this and state that "COIn" is known as a discrete term, namely "Coin" (as in money). So, to teach the code analysis to recognise the CO as a seperate abbreviation you can add it to the custom dictionary. (otherwise compiler warning)

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions