C#: Working With Dates

In a previous article, we talked about working with strings and string builder classes. In this article, I am going to explain another equally important C# concept, working with dates. Microsoft .NET framework contains DateTime structure which can be used to create date and time data in various formats. The DateTime structure can hold any value between 12:00:00 Midnight from January, 01 0001 to 11:59:59 PM, December 31, 9999.

Read more

C#: Working With Strings

As promised in one of my earlier articles, I am back with an article entirely dedicated to Strings in C#. This article explains what strings in C# are and how they are created and formatted. We shall also see some different methods used for string manipulation. Finally, we will take a look at the string builder type which is an alternative to normal strings. So let the fun begin!

Read more

Decision Making with C#

It is time to put your critical thinking hat on today because today we are going to go over decision making in C#. If you have been following along on my blog, you will know that I am currently covering the basics of the C# programming language as a way to kickstart my way back into blogging. This blog post is just one of many C# articles posted and to be posted on this blog.

Read more

C#: Operators and Expressions

It’s time to get to get out your math hat because today we will be covering C# operators and expressions. In this article, I will cover the different types of operators along with how to use them properly by providing real code examples. I will also discuss expressions and how they relate to operators. This post is just one of many posts covering various topics in C# as I continue towards my goal of learning the C# programming language. I hope if you are reading this you will find some value in the content.

Read more

C# Variables: Primitive and Non-primitive Types

In this article, I will be discussing C# variables and the difference between primitive and non-primitive types. This post is just one of many posts covering various topics in C# as I continue towards my goal of learning the C# programming language. If you have done any developing with any other programming language, then variables should not be anything new to you as they are essential for any productive language.

Read more