Graphical aspect may vary depending on your choices in following the instructions below, but the end result should look something like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Globalization; | |
namespace ExercicioContaBancaria { | |
internal class ContaBancaria { | |
#region Atributos | |
public double Saldo { get; private set; } | |
public int NumeroConta { get; private set; } | |
public string Nome { get; set; } |
You can check them out if you want to learn more. Some are theoretical, some are more practical. You can look through them.
IAmTimCorey (C# mostly)
Christopher Okhravi (General videos, about programming concepts, ideas and rules)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################### | |
# compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.pdb | |
*.dll.config | |
*.cache |