Introduction to C#

C# CONCEPTSC# has been around for quite some period, and it continues to develop, obtaining more enhanced features.Photo by Ann H from PexelsLearning ObjectiveHow to install Visual StudioHow to write your first C# programPrerequisitesThe article is beginner level, so previous coding experience is not required.Getting StartedC# is an object-oriented programming language which allows developers to build … Continue reading Introduction to C#

Naming Guidelines

CODING STANDARDSLearn to follow a standard naming design pattern for any programming language.Photo by Fernando Hernandez on UnsplashFollowing a standard naming convention while coding can be a significant contribution to the project.A single project is shared across many developers. Beyond consistency of form, names of framework elements must be easily understood and must convey the function of … Continue reading Naming Guidelines

Scala Testing Styles

SCALA CONCEPTSScalaTest supports numerous styles of composing test cases, each designed to solve particular requirements.This article describes the intended use cases for each option to help you find the best-fit styles for your project.PrerequisitesLearn about how to configure scala & run necessary test casesGetting StartedScalatest supports many different testing styles under the same testing framework, … Continue reading Scala Testing Styles