I'm currently working on a growing shared codebase.
I'd like to add method summaries (XML comments) in multiple languages - the codebase has been used by Italian programmers until today, but it's now becoming international.
I'd like to mantain existing summaries (written in Italian) and adding English ones. Is there a way?
At the moment it has been done as follow:
/// <summary>
/// EN Provides access to database-related methods to simplify connection and data operations.
/// IT Fornisce accesso a metodi relativi a database per semplificare connessione ed operazioni sui dati.
/// </summary>
public class DatabaseHelper
{
/// ...
}
I wonder if there's a more professional way - just like base class library members (they are commented by Intellisense in the IDE selected language).