C#'ta Field ve Property farkı nedir? #shorts



C#'ta Field ve Property farkı nedir? #shorts

C#'ta Field ve Property farkı nedir? #shorts

Bu videoda field ve propery arasındaki farkı anlatmaya çalıştım.

Nesne yönelimli programlama ilkeleri, bir sınıfın iç işleyişinin dış dünyadan gizlenmesi gerektiğini söyler. Bir field’ı açığa çıkarırsanız, özünde sınıfın bir “internal” yapısını açığa çıkarmış olursunuz. Bu nedenle property’ler bize, dış dünyadaki birinin bizim sınıfımıza olan implemtasyonunu bozmadan, field’ları değiştirme veya implementasyon üzerinde değişiklik yapmamıza imkan sağlar.

// C#’ta Field ve Property farkı

class Person
{
// Field
private string name;

// Property
public string Name
{
get { return name; }
set { name = value; }
}

// C# 3.0 Auto-implemented property
public string Surname { get; set; }
}

#shorts #csharp

***

🤖 LEETCODE ► https://www.youtube.com/playlist?list=PL7rvg7Sao02shXDj-yaczfZFnAF_EH_CO
💚 HACKERRANK ► https://www.youtube.com/playlist?list=PL7rvg7Sao02u0PYyUHT6ItQYZFua4ilDa
👌 HACKERRANK- 30 DAYS OF CODE ► https://www.youtube.com/playlist?list=PL7rvg7Sao02s2niCrdzsPEB9qzGXpIfic
🎁 C# YENİLİKLERİ ► https://www.youtube.com/playlist?list=PL7rvg7Sao02t3bq68IjUYQIJjGrCC4x_I
💜 SIFIRDAN C# PROGRAMLAMA EĞİTİMİ ► https://www.youtube.com/playlist?list=PL7rvg7Sao02tAU3waXR3yHJP5xXQJOQg7
🔆 C# SHORTS ► https://www.youtube.com/playlist?list=PL7rvg7Sao02udZJq0X8uN4iYFoMh_Wu-O
💛 CODECADEMY EĞİTİMLERİ ► https://www.youtube.com/playlist?list=PL7rvg7Sao02uGMavl-Mnu_LPVAWsYVmov
🎨 .NET YENİLİKLERİ ► https://www.youtube.com/playlist?list=PL7rvg7Sao02seXLs_OXXo3vuGeJDoMwAE
⭐ .NET MAUI VİDEOLARI ► https://www.youtube.com/playlist?list=PL7rvg7Sao02sejh8YACKhr-vvigoNXmCF
🎖️ VISUAL STUDIO VİDEOLARI ► https://www.youtube.com/playlist?list=PL7rvg7Sao02s06i0_oceNQDCuE7qbZNmR
🎉 BENCHMARKDOTNET VİDEOLARI ► https://www.youtube.com/playlist?list=PL7rvg7Sao02tnVUKp6ZhW34mV3EIIShIQ
✨ ALGORİTMA VİDEOLARI ► https://www.youtube.com/playlist?list=PL7rvg7Sao02ue_QyrgO6-qdVDJeDUiAdd

🐦 Twitter’dan takip edin ► https://twitter.com/sonergonul
💜 Twitch’ten takip edin ► https://www.twitch.tv/sonergonul
💚 Discord kanalımız ► https://discord.gg/VXZQH3U
💖 Quora’dan takip edin ► https://www.quora.com/profile/Soner-Gonul
💛 Instagram’dan takip edin ► https://www.instagram.com/sonergonul/
✨ Tiktok’tan takip edin ►https://www.tiktok.com/@soner_gonul

💪 KATIL: https://www.youtube.com/channel/UCFTgwm0NW2Ay2c422bcu4xg/join

Comments are closed.