Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class PruebaArgumentoTipoReferencia
- {
- static void PruebaMetodoParametroReferencia(StringBuilder paramSb)
- {
- paramSb.Append("Texto de prueba");
- paramSb = null;
- }
- static void Main()
- {
- StringBuilder sb = new StringBuilder();
- PruebaMetodoParametroReferencia(sb);
- Console.WriteLine (sb.ToString()); // Texto de Prueba
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement