What is Input/Output in C# - Programming tutorial for beginners

preview_player
Показать описание
In this programming tutorial, we will learn about input and output. It is one of the most important programming concepts. You will learn how to insert data into the application and how to show the data to the user.
Enjoy the video and leave your questions in the comment section.

If you want to gain more practical experience in building real apps and get career-ready skills, join my Practical Programming Course below.

Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.

📚 Learn programming with these Free E-Books ⬇

Related videos:

CONTENTS:
00:00 - Introduction to input and output
00:14 - Where to learn practical programming
01:29 - What is input in programming
02:11 - What is output in programming
02:35 - Let's practice
02:52 - Console.WriteLine (Writing text)
03:25 - Console.ReadLine (Reading text)
04:53 - Converting string int number

Add me on:
Рекомендации по теме
Комментарии
Автор

Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time!💰Use this coupon to save 10% (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.

📚 Learn programming with these Free E-Books ⬇

CodeBeauty
Автор

I have watched many C++ and C# YouTube tutorials. But, her teaching style is amazing and even an absolute beginner can easily understand it. Love from Pakistan 🇵🇰🇵🇰🇵🇰❤️.

anonymous--gr
Автор

Great tutorial Saldina! I can see the Delphi/Pascal influence in C# - makes sense since Anders Hejlsberg was heavily involved in Delphi. One of his regrets is not having maintained Pascal's type annotation coming after the variable name. `num1: int` vs `int num1`. Almost all newer languages nowadays have the type annotation after the variable name.

Kotlin:

fun sumTwoNums( num1: Int, num2: Int ): Int {
return num1 + num2
}

Swift:

func sumTwoNums( num1: Int, num2: Int )-> Int {
return num1 + num2
}

Haxe:

static function sumTwoNums( num1: Int, num2: Int ): Int
{
return num1 + num2;
}

Odin:

sumTwoNums :: proc( x: int, y: int ) -> int {
return x + y
}

Zig:

fn sumTwoNums( a: i8, b: i8 ) i8 {
return a + b;
}

Rust:

fn sumTwoNums( num1: i32, num2: i32 ) -> i32 {
num1 + num2
}

TypeScript:

function sumTwoNums( num1: number, num2: number): number {
return num1 + num2;
}

One of the few languages that maintained a C/C++ - like syntax is Dart:

int sumTwoNums(int num1, int num2) {
return num1 + num2;
}

GaryChike
Автор

Hi Saldina,

Do you teach any frameworks in your course?

rohlmayers
Автор

Saldina, where is C++ courses, why did you stoped them ?

AbderraoufDZ
Автор

did you finish all the videos in your practical course

islamahmed-iqil
Автор

2:48 Hello Saldina! (David is my actual name hehe)

projectultimatesoul
Автор

I required c++ course . Why you stopped it plz continue

aleemraza
Автор

I love your content.... but feels you spent more time plugging your course/channel than delivering actual content which is a shame...

kailuu
welcome to shbcf.ru