https://github.com/limon-s-interview-prep-zone/c-sharp-console
This repo contains practical implication of essential interview's questions for c#
https://github.com/limon-s-interview-prep-zone/c-sharp-console
c-sharp programming
Last synced: 9 months ago
JSON representation
This repo contains practical implication of essential interview's questions for c#
- Host: GitHub
- URL: https://github.com/limon-s-interview-prep-zone/c-sharp-console
- Owner: Limon-s-Interview-Prep-Zone
- License: mit
- Created: 2020-11-08T20:31:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-26T15:19:16.000Z (about 1 year ago)
- Last Synced: 2025-02-12T03:39:24.354Z (11 months ago)
- Topics: c-sharp, programming
- Language: C#
- Homepage:
- Size: 849 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# C# Console Application Collection
Welcome to the **C# Console Application Collection** repository! This repository contains a series of C# console applications developed as part of an interview preparation guide. Each project is built to demonstrate fundamental concepts and solve common algorithmic and logical challenges that are often encountered in technical interviews.
## Table of Contents
- [C# Console Application Collection](#c-console-application-collection)
- [Table of Contents](#table-of-contents)
- [Overview](#overview)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Usage](#usage)
- [OOP](https://github.com/Limon-s-Interview-Prep-Zone/c-sharp-console/blob/master/OOP/OOP.md)
- [Task and Parallel Programming](https://github.com/Limon-s-Interview-Prep-Zone/c-sharp-console/blob/master/TaskBasedAsync/TaskBasedAsync.md)
## Overview
This repository is designed for those looking to strengthen their C# skills, particularly for interview preparation. It provides hands-on examples for concepts such as data structures, algorithms, object-oriented programming, and more. Each application focuses on different problem-solving techniques and is a great way to enhance your understanding of the C# language and .NET fundamentals.
## Getting Started
To get started with this repository, you’ll need to clone it to your local machine and have a compatible version of .NET installed. Each console application is self-contained, so you can work with each one individually to explore different concepts.
### Prerequisites
- [.NET SDK](https://dotnet.microsoft.com/download) (version 6.0 or higher recommended)
- A code editor (e.g., [Visual Studio](https://visualstudio.microsoft.com/) or [Visual Studio Code](https://code.visualstudio.com/))
## Installation
1. **Clone the repository**:
```bash
git clone https://github.com/Limon-s-Interview-Prep-Zone/c-sharp-console.git
```
2. **Navigate to the repository**:
```bash
cd c-sharp-console
```
3. **Build the solution**: Each application can be built individually using the .NET CLI. Navigate to the desired project folder and run:
```bash
dotnet build
```
### Usage
Once built, you can run any console application by navigating to its folder and using the following command:
```bash
dotnet run
```