❤ Interesting Thanks for this. I am a newbie working in a similar application. With peculiar requirements. 1. User can have multiple accounts but has to be a different account type e.g. current and/or savings account. 2. User deposits funds. 3. User withdraws. E.g. empty the account but now withdraw past minimum balance. 4. User transfers fund. 5. User names does not start with digits.
@jonlbs72 жыл бұрын
Excellent.. thank you so much for sharing. 👍👍👍👍
@goolom2 жыл бұрын
I have been programming for years, and videos like this really very much help alot. You can read tutorials and it 'helps', but seeing it in a video is really helpful. I hope you make more of these for some of the more esoteric topics like delgates and actions! Would be cool to see some on polymorphism and changing types between types, with extra methods. Such as: Base >> Animal Animal >> Dog - MakeSound(); - Walk(); - Run(); - CatchFrisbee(); - FavoriteToyCount <-- int property Animal Cat >> - MakeSound(); - Walk(); - Run(); - ClimbTree(); It would be cool to see how we can change the base class, to interfaces of 'Dog' and 'Cat' with the extra properties and methods, then we can take it a step further and see how the ICat.cs interface can work with different breeds of cats, then a step further with species of cats. Polymorphism is a little confusing when some of the child types have additional methods and properties that do not exist on the base type. -------- Great video! I am using your video to help encapuslate some code for 'Naming Conventions'. Thanks!
@ladefected44752 жыл бұрын
Thx , very easy but informative
@ladefected44752 жыл бұрын
Thanks it's helps
@mcspot87293 жыл бұрын
Nice code
@TheZetaG3 жыл бұрын
Great tutorial on the bank account. Helps a lot!
@TheCrazyMenny3 жыл бұрын
Why money is in double? Great video btw
@lonewolf76983 жыл бұрын
bc money is ussually written with 2 decimals behind the zero therefore it cant be an integer. but you can use a float if you like to. it wont make much of a diffrence.