Advertisement
Fhernd

PrefijosXml.cs

Jul 17th, 2015
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. // OrtizOL - xCSw - http://ortizol.blogspot.com
  2.  
  3. namespace NS
  4. {
  5.     /// T:NS.Clase
  6.     class Clase
  7.     {
  8.         /// F:NS.Clase.campo
  9.         string campo;
  10.        
  11.         /// P:NS.Clase.Propiedad
  12.         string Propiedad
  13.         {
  14.             get { ... }
  15.             set { ... }
  16.         }
  17.        
  18.         /// T:NS.Clase.TipoAnidado
  19.         class TipoAnidado { ... };
  20.        
  21.         /// M:NS.Clase.MetodoA()
  22.         void MetodoA() { ... }
  23.        
  24.         /// M:NS.Clase.MetodoB(System.Int32,System.Double@,System.Decimal@)
  25.         void MetodoB(int p1, ref double p2, out decimal p3) { ... }
  26.        
  27.         /// M:NS.Clase.MetodoC(System.Char[ ],System..Single[0:,0:])
  28.         void MetodoC(char[ ] p1, float[,] p2) { ... }
  29.        
  30.         /// M:NS.Clase.op_Addition(NS.Clase,NS.Clase)
  31.         public static Clase operator+(Clase c1, Clase c2) { ... }
  32.        
  33.         /// M:NS.Clase.op_Implicit(NS.Clase)~System.Int32
  34.         public static implicit operator int(Clase c) { ... }
  35.        
  36.         /// M:NS.Clase.#ctor
  37.         Clase() { ... }
  38.        
  39.         /// M:NS.Clase.Finalize
  40.         ~Clase() { ... }
  41.        
  42.         /// M:NS.Clase.#cctor
  43.         static Clase() { ... }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement