required key word

C# .NET Feature Highlight: Exploring the required Keyword!??

??? ???? ????? ????? ?? C# ?? ??????? ????? ?? .NET 7: ?????? ????????? required.??

???? ???????? ???? ?? ??? ??? properties ???? ?????? ?????? ????? ???? ????? ????? ??? object.

??? ??? ???? ????????

?? ????? ??? ?? ??:

?public class Product??{??

??public required string Name { get; set; }??

??public decimal Price { get; set; }??

}??

???? ???? ???? object ????:??

- ???? ??? Name property ???? initialized.??

- ?? ????? ???? ???? ??? compiler ????? ????? ?? error ???? ??????.??

?

? ?????? ?? ????? ???? ?? ???????????? ???????:??

- ??? ???? ?????? ??? Domain Models ?? ??? Products ?? Orders.??

- ???? ????? ??????? ?? Null Reference Exception ???? ?????? ????? ????? ????? ?? ??? projects.??

- ???????? ???? code ???? ?????? ????????.

? ??? ???? ????:??


var product = new Product??

{??

??Name = "Laptop",??

??Price = 15000??

};??

?// This will work perfectly // But if we forget to set the Name // It will throw an Error

var invalidProduct = new Product??

{??

??Price = 15000??

};?

#CSharp #DotNet #ProgrammingTips #CodeQuality

?

?

????? ????? ?? ???? ?? ?? ?????? ???? ??? ???????? ??? ????? ???? ??????? ???? ???? ???? ????? ?????? ?? ??? ?? ??? ???? ?????? ??? ????? ????????? ?????? ?????? ?? ?????? ??? ????? ???? ???? ??????? ??? ??? ??? ???? ?????? ??? ??????? ??? ???? ?? ??????? ?? ????? ??????? ?????? ??? ??? ???? ???? ??? ??? ????? ??????? ?????? ?????? ?? ????? ????: https://tomatophp.com ??? ????? ???: https://github.com/tomatophp ??? ????? ???? ????? ??????? ????? ???? ?? ????? ??????? ???????? ?????? ???????? ?????? ???? ?? ?? ???? ???????? ?? ??? ??????? ????? ???? ????? ????? ? ?????? ???? ????????? ??????? ????? ?? ?? ???? https://discord.gg/vKV9U7gD3c ??????? ????? ???????

回复

要查看或添加评论,请登录

mohamed tayel的更多文章

  • ??????? ?????? ????????? ??????? ????? ???

    ??????? ?????? ????????? ??????? ????? ???

    ????? ????? ?????? ????????? ????? ?? ???? ?????????? ???? ????? ??? ????? ???????. ??? ?????? ????? ?? ????? ?????????…

    2 条评论
  • ??????? ?? ???? ???????

    ??????? ?? ???? ???????

    ?????? ????? ? ???? ???? ??????? ??? ???? ???? ????? ??? ????? ??????? ?? ???? ??????? ??? ??? ??? ? ??? ???? ?????…

    2 条评论
  • AutoMapper Custom Projections

    AutoMapper Custom Projections

    AutoMapper projections in a simple way Assume we have 2 classes public class User { public int Id { get; set; }…

  • Prepare for Interviews Part 2

    Prepare for Interviews Part 2

    Don't just describe your responsibilities, we want to show off what we've actually done for a company like a backend…

  • Prepare for Interviews Part1

    Prepare for Interviews Part1

    ?A brief document that someone will glance over it about 10 seconds and decide if you are worth talking ???????…

    7 条评论
  • Oracle DBA Position

    Oracle DBA Position

    Responsible Application performance investigation and subsequent tuning of database, SQL and PL/SQL The development of…

  • ???? ???? ?????? ?? ??? HR ??? ???? ??? ?????? ?? ??????? Mail ?????? ?????!

    ???? ???? ?????? ?? ??? HR ??? ???? ??? ?????? ?? ??????? Mail ?????? ?????!

    ????? ???? ???? ?????? ?? ??? HR ??? ???? ??? ?????? ?? ??????? Mail ?????? ?????! ? ?? ?? ??????? ???? ???????? ??…

    2 条评论

社区洞察

其他会员也浏览了