Advertisement
Fhernd

ReferenciaTipoNamespace.cs

Nov 12th, 2017
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. namespace MiEmpresa
  2. {
  3.     namespace ElementosComunes
  4.     {
  5.         class ReporteBasico
  6.         {
  7.             // ...
  8.         }
  9.     }
  10.  
  11.     namespace GestionVentas
  12.     {
  13.         class ReporteVentas : ElementosComunes.ReporteBasico
  14.         {
  15.             // ...
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement