by swodogrick | 29 Jul 2017 | C#.NET, Programming
What Is A Method? A method is a block of code this is accessible by name. All statements executed within a C# program run within the context of a method. Every C# program needs, at the very least, one method named Main(). (The name of the method is “Main”...
by swodogrick | 23 Jul 2017 | C#.NET, Programming
Classes and structures can contain, among other types of members, fields and properties. In this post I’ll focus on field and property members and explain the difference between instance fields/properties and static fields/properties. Before reading further...
by swodogrick | 9 Jul 2017 | C#.NET, Programming
Complex applications need more than simple Console.WriteLine() statements sprinkled about the code to record application state for debugging and diagnostics purposes. That’s a job for logging packages. In this post, I’ll explain how to integrate logging...
by swodogrick | 8 Jul 2017 | C#.NET, Programming
To create anything other than trivial programs you’ll need to structure and organize your Visual Studio solution in a way that enables separation of concerns. In this post I’ll show you how to create a complex Visual Studio solution consisting of multiple...
by swodogrick | 29 Jun 2017 | C#.NET, Programming
You don’t need Visual Studio for simple C# projects. Everything you need is included when you install the .NET Framework, except a decent text editor. (I highly recommend Notepad++) To get started, you’ll need to install the .NET Framework, if you...
Recent Comments