Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created October 3, 2013 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/6803311 to your computer and use it in GitHub Desktop.
Save Fhernd/6803311 to your computer and use it in GitHub Desktop.
Solución a la ambigüedad de namespaces a través de extern.
extern alias U1;
extern alias U2;
class PruebaLibrerias
{
static void Main()
{
U1.Utilidades.Validadores v1 = new U1.Utilidades.Validadores();
U2.Utilidades.Validadores v2 = new U2.Utilidades.Validadores();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment