I'm asking myself if it is possible to provide the texts written in the comments in multiple languages.
I mean those:
/// <summary>
/// Adds two numbers. That's amazing!
/// </summary>
public int Add(int x, int y)
{
return x + y;
}
I'm writing a little framework and as I can see in the .NET framework the summary info in the intellisense popup appears for me in german. So i think there might be a way to do that for my framework too.
Unfornately I did not find any information about that, so maybe someone of you knows...
I'm also not a big friend of those 'text blocks' above my public functions, it just does not look so good, so I would be happy to here from you if there is maybe a completely other way of doing that.