Posted inC#.Net Nullable Reference Types in C# Posted by By Abdul Khursheed February 12, 2025 'Nullable reference types' and 'Non-nullable reference types' to allow the compiler to perform'static flow analysis'…
Posted inLINQ LINQ Extension Method in C# Posted by By Abdul Khursheed February 12, 2025 Filtering: Where, OfTypeSorting: OrderBy, OrderByDescending, ThenBy, ThenByDescending, ReverseGrouping: GroupByJoin: JoinProject: Select, SelectManyAggregation: Average, Count, Max, Min, SumQuantifiers: All, Any, ContainsElements: ElementAt, ElementAtOrDefault, First,…
Posted inOOPS Abstract Class vs Interface in C# Posted by By Abdul Khursheed February 12, 2025 Difference between Abstract class vs Interface
Posted inOOPS Interfaces in C# Posted by By Abdul Khursheed February 12, 2025 Interface is a set of abstract methods, that must be implemented by the child classes.interface…
Posted inC#.Net Collection of Objects in C# Posted by By Abdul Khursheed February 12, 2025 'Collection of objects' is an collection object, where each element stores a reference to some…
Posted inC#.Net Dictionary Collection in C# Posted by By Abdul Khursheed February 12, 2025 The "Dictionary" class is a generic class; so you need to specify data type of…
Posted inC#.Net Lambda Expressions in C# Posted by By Abdul Khursheed February 12, 2025 "Lambda Expressions" are "name-less methods", that can be invoked by using the delegate variable or…
Posted inC#.Net Anonymous Method in C# Posted by By Abdul Khursheed February 11, 2025 Anonymous methods are "name-less methods", that can be invoked by using the delegate variable or…
Posted inC#.Net Extension Method in C# Posted by By Abdul Khursheed February 11, 2025 Extension method is a method injected (added) into an existing class (or struct or interface),…
Posted inASP.NET CORE MVC HTTP Status Codes Posted by By Abdul Khursheed February 11, 2025 Overview: Status codes are issued by the server in response to the client's request to…