[.net] General C#, Tao, ... questions

Started by
11 comments, last by realJJ 19 years, 5 months ago
Quote:Original post by rakoon2
1.)

How can I use the xml documentations from by dlls in other projects? I want to see the <summary> </summary> blocks if I move the mouse over a class from my dll. It works i use the Tao. librarys. But how about my own? :>



Name the xml-doc file and the assembly equally (i.e. MyAssembly.dll and MyAssembly.xml). This will cause VS to copy the xml with the assembly everytime you reference MyAssembly.dll and it will cause intellisense etc. to show the documentation.

MfG VizOne
Andre Loker | Personal blog on .NET
Advertisement
Ah great! :) I also found the sdl sublibs! Thank you! :)
Quote:Original post by rakoon2
3.)
C# doesn't support const functions, function params, right?
Any chances that C# 2.0 will support them?

const functions - no.
function params - look at delegates.

This topic is closed to new replies.

Advertisement