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)
################### | |
# compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.pdb | |
*.dll.config | |
*.cache |
IAmTimCorey (C# mostly)
Christopher Okhravi (General videos, about programming concepts, ideas and rules)
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; } |