C# Tutorial | C# Tutorial Tamil | C# For Beginners | Cheetah Media

  Рет қаралды 25,743

Cheetah Media

Cheetah Media

Күн бұрын

Hiiii friends in this video we learn about C# basics in tamil.. for more video
check the below link
Angular First Part : • #1 Angular Tutorial | ...
Angular Second Part : • #2 Angular Tutorial | ...
Angular Third Part : • #3 Angular Tutorial | ...
React Tutorial : • React Tutorial | React...
Git & GitHub : • What is Git | What is...
NodeJs : • Node Js | NodeJs Tamil...
ExpressJs : • ExpressJs | ExpressJs ...
MySql : • MySql | MySql in Tamil...
MongoDB : • MongoDB In One Video T...
MernStack : • MERN Stack In Tamil | ...

Пікірлер: 32
@vallalval4077
@vallalval4077 3 жыл бұрын
i am a engineering student. you are much better than the lectures bro. vera level anna
@Rifaznilam
@Rifaznilam Жыл бұрын
this video is very useful. you are a great lecturer
@dineshkumar.k2444
@dineshkumar.k2444 2 жыл бұрын
Oops in c#. Pls upload sir, that very helpful for us 🥳
@gunasekaran4288
@gunasekaran4288 2 жыл бұрын
Hi Bro, I am not technical background, so shall I study this course, to develop an Excel Automation??
@sherlinsam3363
@sherlinsam3363 3 жыл бұрын
sir please put videos on c# blazor, docker, kubernetes,microservices. If you have a paid videos also ready to buy please share details
@PrinceArcon
@PrinceArcon 2 жыл бұрын
Thank you so much bro for the great explanation
@SAHINgaming18
@SAHINgaming18 3 жыл бұрын
bro c# advanced concept poduvingala...?
@antony2970
@antony2970 4 жыл бұрын
Next level thank you
@TheDevsHammer
@TheDevsHammer 3 жыл бұрын
bro athula antha error message show panna enna extension use pandringa
@muthuselvambigab6310
@muthuselvambigab6310 2 жыл бұрын
Hello sir.. I m getting object reference not set to instance in my connection string... plz help me to fix...
@ashwinkumar1916
@ashwinkumar1916 2 жыл бұрын
using System; namespace ConsoleApp2 { class Program { static void Main(string[] args) { Console.WriteLine("Enter any two numbers..."); int x = int.Parse(Console.ReadLine()); int y = int.Parse(Console.ReadLine()); Console.WriteLine("which operation do u want ..... 1. addition, 2.subtraction, 3.mulplication"); int slno = int.Parse(Console.ReadLine()); switch(slno) { case 1: Console.WriteLine(x + y); break; case 2: Console.WriteLine(x - y); break; case 3: Console.WriteLine(x * y); break; default: Console.WriteLine("please choose a valid choice on above"); break; } } } }
@nachiappans7030
@nachiappans7030 3 жыл бұрын
Sie neega set method la name ah retuen panela apayepdi change achu
@Sohail8818181
@Sohail8818181 2 жыл бұрын
c kandupudichathu microsoft taa???
@iamonly9219
@iamonly9219 4 жыл бұрын
Visual Studio Code la Work pannanum ma Bro. Visual Studio la work pannalama.
@cheetahmedia591
@cheetahmedia591 4 жыл бұрын
yes.u can
@iamonly9219
@iamonly9219 4 жыл бұрын
@@cheetahmedia591 thank you bro. And I Have Some Questions Bro. Please Contact 7010142017 Call me bro. My Name Subash.
@logeshr1761
@logeshr1761 2 жыл бұрын
I love java
@sanjays9841
@sanjays9841 4 жыл бұрын
Bro do arduino programming video
@shamsunnihar8563
@shamsunnihar8563 2 жыл бұрын
Sir how to install .net in linux
@vijayt7954
@vijayt7954 4 жыл бұрын
Bro c# next podunga
@relaxsoulmusic5297
@relaxsoulmusic5297 2 жыл бұрын
Timestamp set panu ga bro
@sakthivelt1785
@sakthivelt1785 Жыл бұрын
bro I am complete your task. And I want next video in C#. And check my answer. namespace MyNamespace { class program { static void Main(string[] args) { bool continueOperation=true; while (continueOperation) { int A,B; Console.WriteLine("Enter the value of A: "); bool isValidInt =int.TryParse(Console.ReadLine(), out A); Console.WriteLine("Enter the value of B: "); bool isValidInt1=int.TryParse (Console.ReadLine(), out B); if (isValidInt || isValidInt1) { Console.Write("Enter the valid operator like(+,-,*,/): "); string op = Console.ReadLine(); if (op =="+") { Console.Write(A+B); } else if (op =="-") { Console.Write(A-B); } else if (op =="*") { Console.Write(A*B); } else if (op =="/") { if (A==0 && B==0) { Console.Write("The value can't divicible by zero"); return; } Console.Write(A/B); } else { Console.WriteLine("Enter the valid operator"); continue; } } else { Console.WriteLine("enter the valid number"); continue; } System.Console.Write(" You want contine this operation? (yes/no): "); string userResponse= Console.ReadLine().ToLower(); if (userResponse == "yes") { continue; } else if (userResponse == "no") { Console.Write("Thank you"); continueOperation = false; } else{ Console.Write("invalid response"); continueOperation = false; } } } } }
@roshanakthar6895
@roshanakthar6895 3 жыл бұрын
Bro audio quality change pannuga
@parthibankumaravel6208
@parthibankumaravel6208 4 жыл бұрын
Waiting for the next lever video...when????
@Mr.Sudaroli
@Mr.Sudaroli 3 жыл бұрын
856 so ...much much more 😁😁😁
@gokulkumar6568
@gokulkumar6568 3 жыл бұрын
C# la unity game engine tutorial poota ungaluku puniyama pookum
@Duck_The_Coloniser
@Duck_The_Coloniser 3 жыл бұрын
Puniyama pilau
@SAHINgaming18
@SAHINgaming18 3 жыл бұрын
Bro idhu crct ah parunga...? Enak therinjadha vachi pani pahten bro output neenga sona mari dha varudhu.... namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int num1; int num2; int result; bool isNum = false; while(isNum==false) { Console.WriteLine("Enter two Numbers : "); string x = Console.ReadLine(); string y = Console.ReadLine(); if((int.TryParse(x,out num1)) && (int.TryParse(y,out num2))) { Console.WriteLine("Do you want to perform the operations like + , - , / , * , % "); Console.WriteLine("Yes or No....!"); string yesorno = Console.ReadLine(); if(yesorno.ToUpper()=="YES") { Console.Write("Enter the Operators : "); string operators = Console.ReadLine(); switch(operators) { case "+" : result = num1 + num2; Console.WriteLine("{0} {1} {2} = {3} " ,num1,operators,num2,result); break; case "-": result = num1 - num2; Console.WriteLine("{0} {1} {2} = {3} ", num1, operators, num2, result); break; case "*": result = num1 * num2; Console.WriteLine("{0} {1} {2} = {3} ", num1, operators, num2, result); break; case "/": result = num1 / num2; Console.WriteLine("{0} {1} {2} = {3} ", num1, operators, num2, result); break; case "%": result = num1 % num2; Console.WriteLine("{0} {1} {2} = {3} ", num1, operators, num2, result); break; } Console.WriteLine("Do You want to continue...."); Console.WriteLine("Yes or No"); string srno = Console.ReadLine(); if(srno.ToUpper()=="YES") { isNum = false; } else if(srno.ToUpper()=="NO") { isNum = true; } } else if(yesorno.ToUpper()=="NO") { Console.WriteLine("Thank You!!:) "); break; } } else { Console.WriteLine("Please enter the valid Numbers...."); } } Console.WriteLine("Thank You.."); Console.ReadKey(); } } }
@gunasekaran4288
@gunasekaran4288 2 жыл бұрын
Hi Bro, I am not technical background, so shall I study this course, to develop an Excel Automation??
MySql | MySql in Tamil | MySql For Beginners | Cheetah Media
1:20:28
Cheetah Media
Рет қаралды 8 М.
JWT | What is JWT ? | JWT Explained in Tamil | Cheetah Media
24:22
Cheetah Media
Рет қаралды 24 М.
Бенчик, пора купаться! 🛁 #бенчик #арти #симбочка
00:34
Симбочка Пимпочка
Рет қаралды 3,7 МЛН
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 15 МЛН
Não sabe esconder Comida
00:20
DUDU e CAROL
Рет қаралды 42 МЛН
React HTML Template Integration | React in Tamil | Cheetah Media
51:36
C# Developer Roadmap 2024 | An overview of the Language | Tamil
13:28
Hareesh Rajendran
Рет қаралды 10 М.
All The JavaScript You Need To Know For React
28:00
PedroTech
Рет қаралды 635 М.