.NET Basics

.NET is a software development framework created by Microsoft that provides a consistent programming model for building applications. It supports multiple programming languages, including C#, Visual Basic, and F#, allowing developers to build a wide range of applications, from desktop software to web applications and mobile apps. Here are some basics of .NET: Common Language […]

Single File Publishing

When you publish your programs probably you see bunch of other files along with your executable. You may want package your published files to single file. Here is how to do it: Edit your project file. Add these lines to your config file. <!– Publish single file settings –> <PublishSingleFile>true</PublishSingleFile> <SelfContained>true</SelfContained> <RuntimeIdentifier>win-x64</RuntimeIdentifier> <PublishReadyToRun>true</PublishReadyToRun> <!– Publish […]

ToLowerInvariant() and ToUpperInvariant()

According to business rule all footballer name and surname must be capitalized and not longer than 8 chars length. Very simple to develop. We develop a wrapper method for this job. Seems working fine. Until this morning. Game masters of the http://icanfootball.com noticed that some player names violates this business rule. After my first debuging […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top