Don't like ads? PRO users don't see any ads ;-)
Guest

C# private void

By: niunzin on Aug 3rd, 2012  |  syntax: C#  |  size: 0.24 KB  |  hits: 41  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*
  2.    Tutorial exclusivo para o Brunoh
  3.  
  4.    playerpremiere.tk
  5.  
  6.  
  7. */
  8.    private void Muda_Texto(Button Algum, String Texto)
  9.    {
  10.       Algum.Text = Texto;
  11.    }
  12.  
  13. /*
  14.    Para utilizar você faz isso:
  15.    Muda_Texto(Button1, "Oláaa!");
  16. */