News

This one is a new subject for me. I've seperated logic in all kinds of programs before, but never in C# where forms are involved. Honestly, I'm just teaching myself the language, having a decent ...
I'm trying to write a simple C# (.NET 1.1) class with a couple of properties. One of the properties is going to be SiteGuid, which relates to the SiteGuid of a SharePoint SPSite object. The ...
Although interfaces in C# can have only properties, abstract classes in C# may have properties and fields. Typically, we use abstract classes to create an abstract base class that other classes ...
How to use static members of a class in C#. The CLR divides system memory into three distinct regions: the stack, the heap, ... Note the usage of the static property named FilePath.
An expression bodied property is declared as a lambda expression. For example let's say I have a Car class that has Make, Model, and Year properties. I can then declare an expression bodied property ...