Intellisensing for the C# an Mono Languages

Find Tips and tricks on how to better use the Zeus IDE. Feel free to post your own tips but please do not post bug reports, feature requests or questions here.
Post Reply
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Intellisensing for the C# an Mono Languages

Post by jussij »

Note: The latest version of Zeus IDE adds an option to create a tags database directly from the assembly ;)

By using the .Net Database Builder utility it is possible to add intellisensing for C# and Mono languages.

Here is how it is done:
  1. Select the Tags, .Net Database Builder menu.
  2. Type in a Database Name
  3. Select the assemblies to be added to the Tags database
  4. Hit the Create button to build the Tags database
  5. NOTE: The tags build process can take quite a while
Once the tags database build is complete, edit the C# document type and add the newly created tags database to the Tags Section of the document type.

For example, assume the C# Core tags database is created by adding the mscorlib, System assemblies using the process described ablove.

After the C# Core is bound to the C# document type the following code should result in the display of intellisense information for the String class.

Code: Select all

String test;
test.
Note: To go to the definition of String, place the cursor on the word and use the Tags, Find current word menu.

Note: To search for any C# definition use the Tags, Find... menu to bring up the Search Tag dialog.
Last edited by jussij on Fri Jun 23, 2006 12:34 am, edited 2 times in total.
Post Reply