CSHARP_1001_NOTES Telegram 768
🔥 Лучшая фича C# за последние годы? Pattern Matching

Зачем он нужен:
Pattern matching позволяет элегантно проверять объект на определённые свойства:

- Является null или не null
- Является объектом конкретного типа
- Имеет свойство с определённым значением

В связке со switch-выражениями и record-типами это превращает код в лаконичный и выразительный.

📌 Пример:

static string PrintShape(object shape) =>
shape switch
{
null => "Нет объекта",
Circle c => $"Круг с радиусом {c.Radius}",
Rectangle { Width: > 0, Height: > 0 } r => $"Прямоугольник {r.Width}x{r.Height}",
_ => "Неизвестная фигура"
};



tgoop.com/csharp_1001_notes/768
Create:
Last Update:

🔥 Лучшая фича C# за последние годы? Pattern Matching

Зачем он нужен:
Pattern matching позволяет элегантно проверять объект на определённые свойства:

- Является null или не null
- Является объектом конкретного типа
- Имеет свойство с определённым значением

В связке со switch-выражениями и record-типами это превращает код в лаконичный и выразительный.

📌 Пример:


static string PrintShape(object shape) =>
shape switch
{
null => "Нет объекта",
Circle c => $"Круг с радиусом {c.Radius}",
Rectangle { Width: > 0, Height: > 0 } r => $"Прямоугольник {r.Width}x{r.Height}",
_ => "Неизвестная фигура"
};

BY C# 1001 notes




Share with your friend now:
tgoop.com/csharp_1001_notes/768

View MORE
Open in Telegram


Telegram News

Date: |

To edit your name or bio, click the Menu icon and select “Manage Channel.” Each account can create up to 10 public channels Content is editable within two days of publishing Hashtags are a fast way to find the correct information on social media. To put your content out there, be sure to add hashtags to each post. We have two intelligent tips to give you: Other crimes that the SUCK Channel incited under Ng’s watch included using corrosive chemicals to make explosives and causing grievous bodily harm with intent. The court also found Ng responsible for calling on people to assist protesters who clashed violently with police at several universities in November 2019.
from us


Telegram C# 1001 notes
FROM American