C# Static Class
A static class is a class where all the members are static. Static classes are used to group […]
A static class is a class where all the members are static. Static classes are used to group […]
A local constant is much like a local variable, except that once it is initialized, its value can’t […]
In a previous post we discussed static fields. The first thing to note is that static methods of […]
James Martin is one of the pioneers of RAD in the 1980’s. He wrote a book called Rapid […]
ildasm stands for Intermediate Language Dis-assembler. What is it? It is a tool that lets you view the […]
This is our second series of posts on C# Classes. The list of posts is shown on the […]
The book Illustrated C# 7, Fifth Edition by Daniel Solis and Cal Schrotenboer published by Apress has a […]
You probably won’t need to use the this keyword very often, partly because it can only be used […]
We have a series of posts that contain more introductory content than this series of posts called C# […]
This post explores a few examples of how to use a filter, Where, with LINQ. Here are a […]
The book Illustrated C# 7, Fifth Edition by Daniel Solis and Cal Schrotenboer published by Apress has some […]
When dealing with objects, you often want to make comparisons between them. This is especially important in collections, […]