C# Static ClassA static class is a class where all the members are static. Static classes are used to group […] December 12, 2018 in C# tagged C# Classes Intermediate by Mike
C# ConstantsA local constant is much like a local variable, except that once it is initialized, its value can’t […] December 11, 2018 in C# tagged constants / global / static / constant / C# Classes Intermediate by Mike
C# Static MethodsIn a previous post we discussed static fields. The first thing to note is that static methods of […] December 11, 2018 in C# tagged C# Classes Intermediate by Mike
James Martin RADJames Martin is one of the pioneers of RAD in the 1980’s. He wrote a book called Rapid […] December 9, 2018 in C# tagged RAD / RAD by Mike
C# ildasmildasm stands for Intermediate Language Dis-assembler. What is it? It is a tool that lets you view the […] December 9, 2018 in C# tagged extension by Mike
C# Classes IntermediateThis is our second series of posts on C# Classes. The list of posts is shown on the […] December 9, 2018 in C# tagged class / classes / intermediate / C# Classes Intermediate by Mike
C# Indexers IntroductionThe book Illustrated C# 7, Fifth Edition by Daniel Solis and Cal Schrotenboer published by Apress has a […] December 2, 2018 in C# tagged index / indexer / C# Indexers by Mike
C# this KeywordYou probably won’t need to use the this keyword very often, partly because it can only be used […] December 2, 2018 in C# tagged keyword / this by Mike
C# Static FieldsWe have a series of posts that contain more introductory content than this series of posts called C# […] December 2, 2018 in C# tagged C# Classes Intermediate by Mike
C# LINQ WhereThis post explores a few examples of how to use a filter, Where, with LINQ. Here are a […] December 2, 2018 in C# tagged C# LINQ by Mike
C# LINQ Array of IntegersThe book Illustrated C# 7, Fifth Edition by Daniel Solis and Cal Schrotenboer published by Apress has some […] December 2, 2018 in C# tagged C# LINQ by Mike
C# Interface IComparableWhen dealing with objects, you often want to make comparisons between them. This is especially important in collections, […] December 1, 2018 in C# tagged C# Interfaces by Mike