Download Logo

Install SDK and IDE | Chapter 1

Prerequisite For Development using C# Programming Language

June 2024 · 1 min · 136 words · PrashantUnity
Download Logo

Hello World PolyGLot NoteBook| Chapter 2

Write First Program in C# using PolyGLot NoteBook

June 2024 · 1 min · 150 words · PrashantUnity
Download Logo

Hello World Terminal(CLI) | Chapter 2

Write First Program in C# using Terminal(CLI)

June 2024 · 2 min · 256 words · PrashantUnity
Download Logo

Hello World Visual Studio | Chapter 2

Write First Program in C# using Visual Studio Community Edition (Free)

June 2024 · 2 min · 248 words · PrashantUnity
Download Logo

Getting Started with Basic C# Concepts | Chapter 3

Welcome to this introductory post on fundamental C# programming concepts. Understanding the basics is crucial. This Post cover how to use comments, declare variables, understand data types, and handle user input and output.

June 2024 · 3 min · 461 words · PrashantUnity
Download Logo

Mathematical Operation in C# | Chapter 4

In this post we will look into how mathematical Operation Work in c#

June 2024 · 2 min · 417 words · PrashantUnity
Download Logo

String in C# | Chapter 5

A string is an object of type String whose value is text. Internally, the text is stored as a sequential read-only collection of Char objects.

June 2024 · 3 min · 633 words · PrashantUnity
Download Logo

If Else in C# | Chapter 6

Conditional statements allow you to make decisions in your code based on certain conditions. The most commonly used conditional statements in C# are **if**, **else if**, and **else**.

June 2024 · 3 min · 553 words · PrashantUnity
Download Logo

Loop In C# | Chapter 7

Loops are used to execute a block of code repeatedly based on a condition. C# provides several looping constructs: `for`, `while`, `do-while`, and `foreach`. Each serves different use cases and provides flexibility in iteration.

June 2024 · 2 min · 321 words · PrashantUnity
Download Logo

Function In C# | Chapter 8

Function : It Is Series of statement contained inside code block which execute top down manner when called.It can also be call by name Method

June 2024 · 4 min · 733 words · PrashantUnity