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 ...
Classes, structs, and records are fundamental concepts in C# programming. Each is a different kind of type, with different features, capabilities, and limitations. To make matters more confusing, they ...
Is there a C# equivalent to friend classes as in C++ or Java? All I can find are friend assemblies, which isn't quite what I am looking for.
When designing applications, it is important to know when to use an abstract class and when to use an interface. Although abstract classes and interfaces seem similar in some ways, there are key ...