Back to Browse

C# Type Casting or Type Conversions - Part 8 | C# Tutorial

2.2K views
Jan 25, 2019
3:52

This C# tutorial is created to help you learn basic to advanced C# concepts by Microsoft MVP & industry expert. Read Articles on C#: https://bit.ly/2MMtaPG C # Interview Questions and Answers eBook: https://bit.ly/2OZqY8l In this video, we will learn: How to convert one data type value to another one. int num1 = 10; //implicit conversions decimal d1 = num1; char c1 = '1'; //explicit conversions int num2 = (int)c1; string str = "12"; //conversions with helpers class "Convert" int num3 = Convert.ToInt32(str); ⭐️ Contents ⭐️ ⌨️ C# Essentials https://bit.ly/2CAW6Xw ⌨️ Introduction to C# https://bit.ly/2W1w4pz ⌨️ C# Version History https://bit.ly/2R1JDBB ⌨️ Code Execution https://youtu.be/GezZkd4u51M ⌨️ Installing and Configuring Visual Studio https://youtu.be/__EEHkyjppQ ⌨️ Creating and running a console application https://youtu.be/CgThl6Wn9sE ⌨️ Variables and Data Types https://youtu.be/4o8F_ry_02s ⌨️ Type Casting or Type Conversions https://youtu.be/nKJ0mZ-3ptA ⌨️ Console Application Adding two Numbers https://youtu.be/3cLLr5sj8kw ⌨️ Data Type https://youtu.be/X-4_wzbtaPQ ⌨️ Types of Data Type https://youtu.be/MREkdKmTEJ8 ⌨️ Safe Type Casting with IS and AS Operator https://youtu.be/dn_uVYYMEGU ⌨️ Different Types of Operators https://youtu.be/UqbrCalcSJE ⌨️ Operators precedence https://youtu.be/aa02O_neyGs ⌨️ Conditional Statements https://youtu.be/omsBVhEutdA ⌨️ If Statement https://youtu.be/uMMKiSP6NSA ⌨️ if Else Statement https://youtu.be/lv-OKno0SQ4 ⌨️ If Else If Statement https://youtu.be/4BGvjNCNBTI ⌨️ Switch statement https://youtu.be/6Gir4UUTCpk ⭐️Online Courses to learn⭐️ Mastering ASP.NET Core with Angular- https://bit.ly/2mpAZjp Mastering Azure DevOps Solutions- https://bit.ly/2OTbGqM Mastering ASP.NET MVC with React- https://bit.ly/2s8SfMB Mastering Microservices with Containers- https://bit.ly/2z9OB9n Mastering Amazon Web Services (AWS)- https://bit.ly/2CtucPU Mastering Azure DevOps Solutions- https://bit.ly/2OTbGqM Microsoft Azure Administrator Associate- https://bit.ly/2AjiLYd Microsoft Azure Developer Associate Certification-https://bit.ly/2NWBduq Mastering Angular 2 to 7- https://bit.ly/2Jj0EIx Mastering MEAN Stack- https://bit.ly/2T1pRYM Mastering React with Redux- https://bit.ly/2MbQBBw Mastering React Native: Build Native Mobile Apps Using React- https://bit.ly/2U4Ztxl Angular2 to 6 Skill Bootcamp: https://bit.ly/2rk00iW AWS Skill Bootcamp- https://bit.ly/2FHPF8u Node Skill Bootcamp- https://bit.ly/2T1SBRd React Skill Bootcamp- https://bit.ly/2ARR2OI ⭐️Follow on⭐️ Website- https://www.dotnettricks.com/ Facebook Page - https://bit.ly/2B3F3hp Google+ - https://bit.ly/2U2VWiZ Twitter - https://twitter.com/DotNetTricksIn Pinterest- https://bit.ly/2RGNjy0 LinkedIn- https://www.linkedin.com/company/dotnettricks/

Download

1 formats

Video Formats

360pmp44.7 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

C# Type Casting or Type Conversions - Part 8 | C# Tutorial | NatokHD