Getting Started with C# and the .NET Framework
Understanding .NET and C#
.NET Framework serves as the foundational platform and technology for building applications in the Microsoft ecosystem.
C# is an object-oriented programming language specifically designed to create applications running on the .NET platform. Unlike .NET, which functions purely as a platform, C# provides the syntax and s ...
Posted on Tue, 21 Jul 2026 16:26:53 +0000 by moiseszaragoza
Building a Windows Service with C#
Development Environment
Operating System: Windows 10 X64
Development Environment: Visual Studio 2015
Programming Languaeg: C#
.NET Version: .NET Framework 4.0
Target Platform: X86
Creating the Windows Service
Create a new Windows Service project named "CustomWindowsService". Rename Service1.cs to MainService.cs and open the code edito ...
Posted on Wed, 24 Jun 2026 18:24:27 +0000 by herando
Building a Basic WCF Book Information Service with Console Host and WinForms Client
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.ServiceModel" />
&l ...
Posted on Thu, 11 Jun 2026 17:30:52 +0000 by abie