diff options
author | Thiago Ribeiro <thiagofribeiro@gmail.com> | 2018-10-31 09:33:00 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 09:33:00 -0300 |
commit | ac42b7b824bdfb0b85852a7a4f9f82f281e99d76 (patch) | |
tree | 4e89fa474251117d330ebe7aba38c4a8133a6de3 /pt-br/csharp-pt.html.markdown | |
parent | 4d9778c0988c324d0e520fd460026b39f9f73ccf (diff) |
[csharp/pt-br] Missing translation
Diffstat (limited to 'pt-br/csharp-pt.html.markdown')
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index be14a1c8..10e8a201 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -336,28 +336,28 @@ on a new line! ""Wow!"", the masses cried"; } /////////////////////////////////////// - // CLASSES - see definitions at end of file + // CLASSES - Veja definições no fim do arquivo /////////////////////////////////////// public static void Classes() { - // See Declaration of objects at end of file + // Veja Declaração de objetos no fim do arquivo - // Use new to instantiate a class + // Use new para instanciar uma classe Bicycle trek = new Bicycle(); - // Call object methods - trek.SpeedUp(3); // You should always use setter and getter methods + // Chame métodos do objeto + trek.SpeedUp(3); // Você deve sempre usar métodos setter e getter trek.Cadence = 100; - // ToString is a convention to display the value of this Object. + // ToString é uma convenção para exibir o valor desse Objeto. Console.WriteLine("trek info: " + trek.Info()); - // Instantiate a new Penny Farthing + // Instancie um novo Penny Farthing PennyFarthing funbike = new PennyFarthing(1, 10); Console.WriteLine("funbike info: " + funbike.Info()); Console.Read(); - } // End main method + } // Fim do método principal // CONSOLE ENTRY A console application must have a main method as an entry point public static void Main(string[] args) |