HHarikrishnainhari.hashnode.dev·Jan 12, 2021 · 5 min read10 Golden Rules of developmentThe 10 rules every developer should follow while development Rule 10: Avoid Regions Regions are used in c# to separate various blocks of code in c#. In general regions are used to navigate easily in a large class. If we carefully observe, these regio...00
HHarikrishnainhari.hashnode.dev·Dec 28, 2020 · 2 min readRecord types in c# 9In Domain driven design, we try to make a value object and Entity. All value objects should be immutable, that means, we should not try to change the state of a value object, instead we should always create a new object. In order to make this happen...00
HHarikrishnainhari.hashnode.dev·Dec 25, 2020 · 3 min readWhen not to use static classesThere has been instances in every application where we are tempted to write static methods as they are much easier to call but that comes with a catch. lets look at some use cases when we should and should not use static classes/methods If we are sur...00
HHarikrishnainhari.hashnode.dev·Dec 23, 2020 · 1 min read<embed> in HTMLEmbed tag was used to embed external content like videos in a position. We can also use this to include widgets and other interactive contents. <embed type="video/webm" src="/media/cc0-videos/flower.mp4" width="250" height="200">...00