Тёмный

Object-oriented Programming (OOP) [Pt 18] | C# for Beginners 

dotnet
Подписаться 292 тыс.
Просмотров 26 тыс.
50% 1

View full playlist: aka.ms/dotnet/beginnervideos/...
Set up C# in VS Code: aka.ms/dotnet/get-started/vscode
🏆Earn the C# Certification: aka.ms/csharp-certification
In this video, David and Scott explain how to model the world with Object Oriented Programming. Let's create person and pet objects, and declare what those people/pets will look like. Along the way, learn best practices on how to create your object.
Links:
.NET Beginner Videos: aka.ms/dotnetvideos
MS Learn: aka.ms/dotnet/beginnervideos/...
Blog: aka.ms/dotnet/blog
Twitter: aka.ms/dotnet/twitter
TikTok: aka.ms/dotnet/tiktok
Mastodon: aka.ms/dotnet/mastodon
LinkedIn: aka.ms/dotnet/linkedin
Facebook: aka.ms/dotnet/facebook
Docs: learn.microsoft.com/dotnet
Forums: aka.ms/dotnet/forums
🙋‍♀️Q&A: aka.ms/dotnet-qa
👨‍🎓Microsoft Learn: aka.ms/learndotnet
#dotnet #csharp

Наука

Опубликовано:

 

10 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 17   
@la.minecraf
@la.minecraf 8 месяцев назад
These two men teach me a lot
@ARMLifeExpressions
@ARMLifeExpressions День назад
Glad i came to know about the primary constructors.tks
@bilalbyte
@bilalbyte 5 месяцев назад
@dotnet team please continue this series
@kvelez
@kvelez 7 месяцев назад
4:01 Classes and Namespaces 13:49 Class refactoring. var p = new Person("Kevin", "Velez", 19); var p2 = new Person("Mario", "Vasquez", 19); List list = [p, p2]; public class Person(string name, string lastname, int age) { public string _name { get; set; } public string _lastname { get; set; } public int _age { get; set; } }
@Ricebow11
@Ricebow11 Месяц назад
What would be the NEXT best playlist to watch after finishing "C# for Beginners"? I definitely learned a lot from those two awesome instructors.
@DB42YT
@DB42YT 2 месяца назад
Easier way to understand OOP than what I was taught.
@richardshi1896
@richardshi1896 7 месяцев назад
Great tutorial video
@kuje89
@kuje89 7 месяцев назад
Thank you!
@marcosphs
@marcosphs 8 месяцев назад
Congratulation 👋
@bryanpaderes8963
@bryanpaderes8963 7 месяцев назад
How to implement this primary constructor in a derived class if its base class has a constructor parameters? I tried this code but it doesn't work: public class Animal(string name, int age) { public string Name { get; } = name; public int Age { get; } = age; } public class Dog(string name, int age, string breed) : base(name, age) { public string Breed { get; } = breed; } Edit (this is now the new way): public class Animal(string name, int age) { public string Name { get; } = name; public int Age { get; } = age; } public class Dog(string name, int age, string breed) : Animal(name, age) { public string Breed { get; } = breed; } thanks this is great!
@jjj-ke9mp
@jjj-ke9mp 7 месяцев назад
What’s the difference between public string First { get; } = firstname; public string First => firstname; public string First { get => firstname; } I know the result might be the same but I can’t see the difference 😢
@VivekGawande1
@VivekGawande1 5 месяцев назад
The first one sets a default value for the First property. The second one is a computed property, so it won't be stored in the object, it's calculated whenever we read the property. The last one I guess is similar to the first one
@maneshwar3468
@maneshwar3468 7 месяцев назад
Looks like copy of the Kotlin language syntax. 🙂 Java + Kotlin = C#
@antosha2224
@antosha2224 7 месяцев назад
No its Kotlin is copy of C#. C# was created in 2001 and Kotlin was created only in 2016 after 15 years of C# exising
@maneshwar3468
@maneshwar3468 7 месяцев назад
@@antosha2224 Nope. C# introduced many new features in version 12, those features ex, primary constructor, look similar to Kotlin Lang.
@antosha2224
@antosha2224 6 месяцев назад
​@@maneshwar3468 So what? Originaly Kotlin was inpired by C# and other languages. Some features was copied directly from C# . Here is the text from their oficial documentation in kotlin org / introduction : "Kotlin took inspiration from many programming languages, including (but not limited to) Java, Scala, C# and Groovy. ". You can go to Kotlin docs intrudaction and read this by yourself. So creator of Kotlin by himself says that Kotlin was inpired by C# and you says "NOPE" lol
@jurycould4275
@jurycould4275 5 месяцев назад
@3:24 "This is a way to segre... segment" and @ 3:35 "For example, might be Fowler.People or Hanselman.People" ... freudian slip much? Muricans...
Далее
8. Object Oriented Programming
41:44
Просмотров 612 тыс.
Нашли Краша Младшей Сестры !
23:46
Despicable Me Fart Blaster
00:51
Просмотров 4,7 млн
C# objects 🧍‍♂️
5:01
Просмотров 42 тыс.
Intro to Object Oriented Programming - Crash Course
30:18
Don't throw exceptions in C#. Do this instead
18:13
Просмотров 252 тыс.
C# polymorphism 🎭
5:11
Просмотров 74 тыс.
ИГРОВОВЫЙ НОУТ ASUS ЗА 57 тысяч
25:33