Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created October 2, 2013 18:00
Uso de tipos en namespaces en un namespace del mismo nivel de jerarquía. Presentación en C#.
namespace MiEmpresa
{
namespace ElementosComunes
{
class ReporteBasico
{
// ...
}
}
namespace GestionVentas
{
class ReporteVentas : ElementosComunes.ReporteBasico
{
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment