Advertisement
Fhernd

PruebaArgumentoTipoReferencia.cs

Nov 10th, 2017
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. class PruebaArgumentoTipoReferencia
  2. {
  3.     static void PruebaMetodoParametroReferencia(StringBuilder paramSb)
  4.     {
  5.         paramSb.Append("Texto de prueba");
  6.         paramSb = null;
  7.     }
  8.  
  9.     static void Main()
  10.     {
  11.         StringBuilder sb = new StringBuilder();
  12.         PruebaMetodoParametroReferencia(sb);
  13.         Console.WriteLine (sb.ToString());          // Texto de Prueba
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement