CREATE APPS WITH
C# WORKSHOP
By the end of this workshop,
participants will:
✅ Understand the basics of Visual
Studio and its role in C#
development.
✅ Learn how to set up and
configure Visual Studio for efficient
coding.
✅ Explore the core features of
Visual Studio, such as IntelliSense,
debugging, and extensions.
✅ Develop a simple C# project
using Visual Studio.
✅ Learn best practices for C#
coding in a professional
environment.
Workshop Objectives
Why use Visual Studio for C#?
• Powerful IDE with built-in
debugging
• IntelliSense & Code
Suggestions
• Integrated Git & Version
Control
• Supports .NET
Framework, .NET Core,
and .NET 8+
Introduction to Visual
Studio
Introduction to Visual
Studio
Exploring the Interface
• Solution Explorer
• Code Editor & IntelliSense
• Output & Error List
Introduction to Visual
Studio
Creating
Your First
C# Project
• Create a C# Application using Visual Studio.
• Navigate the Visual Studio interface, including the Solution Explorer
and Code Editor.
• Understand the project structure of a C# Console App
• Write and execute calculator program in C#.
Create a new project
Create a new project
A Project “Start” is
created
FORMS.
CS
Form1.cs [Design]
This window displays the
file form1.cs in design
mode.
In this window you can
add the needed controls
to the form.
Forms
SOLUTION
EXPLORER
Solution Explorer
is used to review all files in your
project. Mainly,
the form1.cs file, references, and
any images you
include in the
project.
Solution Explorer
TOOLBOX
Toolbox: is a window
that contains all the
controls and
components that you
can add and use in a
form.
Toolbox
Common Controls: is the most
used categories, since it contains
the most common controls that
you can find in most forms. For
example, buttons and textboxes.
Toolbox
This image displays
a form after adding
a button to it.
Toolbox
PROPERTIES
WINDOW
The Properties window,
displays all properties
associated to the selected
control.
properties window
properties window
Run the Project
today's goal
Creating and Running a
Calculator
Thanks!!

Create apps with C# Workshop for students