C# Language Tutorial | Value Types and Reference Types in C# | C# Full Course by Sandeep Soni

  Рет қаралды 35,713

BestDotNetTraining

9 жыл бұрын

👨🏻‍🏫 This C# tutorial is compiled by Sandeep Soni, a Microsoft Certified Trainer, a Software & Corporate Trainer for 24 years.
📖 Agenda of this Video -
C# Tutorial - Data Types - Value Types vs Reference Types is the second video which comes after, Introduction of C# belonging to a series of video covering C# tutorial. In this video complete focus is on data types as it is the most important part of any language for developing an application and then comes value type, reference type, the difference between them, various types of memory locations where the variables are allocated memory space, and lot more.
0:00 - Introduction
0:17 - Introduction to Primitive Data Types and Variable Declarations
6:12 - Why Data Types?
11:12 - Integral Types
16:09 - Floating Types
16:51 - Fixed Point Type (Decimal)
18:27 - Other Data Types
18:57 - Variable Declaration Syntax
19:18 - DataTypesDemoApp
22:56 - Classification of memory in Application
29:05 - Category of Data Types in .NET
💻 Sandeep Soni frequently conducts technology webinars and workshops for free. To get info about these, you can join one of our WhatsApp groups - 📲 chat.whatsapp.com/K9Z5ETnUc9l01CFrfBrGwy
For more great tutorials from the creator of this course, check out www.bestdotnettraining.com/
📕 You can view the original C# course: www.bestdotnettraining.com/csharp-online-training
====================================================================
📡 To know more about upcoming LIVE webinars and courses, you can check out: www.bestdotnettraining.com/courses-and-webinars
📞 For any course-related queries, reach us @ +91 8008327000 Kashmira Shah
Please leave your comment about the videos.
Subscribe to our channel for more related videos: kzfaq.info
📱 Connect with us
- Facebook: DeccansoftHome
- Twitter: deccansoft
- LinkedIn: in.linkedin.com/company/deccansoft-software-services
- Trainer LinkedIn Profile: www.linkedin.com/in/sandeepsoni123/
- Connect with Trainer for Career Guidance: +91 98490 01840
- Website: www.deccansoft.com/ or www.bestdotnettraining.com/

Пікірлер: 18
@srinivasaraoyp3640
@srinivasaraoyp3640 5 жыл бұрын
Thank you sir.
@ilovelifeeveryday4764
@ilovelifeeveryday4764 6 жыл бұрын
awesome!!!!
@SantoshKumar-mb4nt
@SantoshKumar-mb4nt 6 жыл бұрын
Can you provide PDF of the file from which you are teaching......
@santhoshreddypodduturi8331
@santhoshreddypodduturi8331 8 жыл бұрын
sir please upload videos on, What is Object,Class,Method,Reference, and difference between them, because i am confusing on while dealing with them?
@bluestarsz
@bluestarsz 7 жыл бұрын
Thank you sir. From Pakistan
@charsgirly
@charsgirly 9 жыл бұрын
Good day sir! Your video really helped me out. It is very informative and I like how you teach. But there's just one tiny problem: it's how you speak. I'm sorry if this really offends you in some way, but sometimes you speak very fast and because of your accent, I have a little difficulty understanding what you're saying. It would be really helpful if you could add subtitles. I know it's very tiring so you could instead speak a little slower. But great video! Really. I'm going to watch all your C# playlists. Keep up the good work sir!
@mostafasaad1878
@mostafasaad1878 7 жыл бұрын
Yeah It's like (Spanish) English however its an exellent course
@vishavbansal1
@vishavbansal1 7 жыл бұрын
Sir! The examples provided by you for value type and reference types are very confusing. I wish, I could get a better idea about it.
@akhileshsahu026
@akhileshsahu026 7 жыл бұрын
Sir please can you explain what is Reference ? from MSDN they said that "A reference type contains a pointer to another memory location that holds the data" , so let us suppose that if we have two class 2nd class has public int a=5; so where a will store in stack or heap because class is reference type so it store on heap but it is local to class so it must be stored on the stack ? i am confused sir , even if we call that variable value in 1 st class then it's value will stored on the heap.
@BestDotNetTraining
@BestDotNetTraining 7 жыл бұрын
HI Akhilesh, Please visit our Online video tutorials www.bestdotnettraining.com/csharp-online-training
@akhileshsahu026
@akhileshsahu026 7 жыл бұрын
thank you sir.
@SandeepSoni_Deccansoft
@SandeepSoni_Deccansoft 7 жыл бұрын
akhilesh sahu Local variables of methods a d not class are allocated memory on stack. Reference is pointer to the pointer... It's address of address data on heap.
@renukapatel1253
@renukapatel1253 3 жыл бұрын
Your videos really helped a lot to understand C# . I listen your videos very carefully and trying to learn C#. Explanation with examples really helping me to understand the concept. I am new in programming and i m finding difficulty to understand as you told for decimal it has fixed 28 digits after decimal for 10/3 i got .333333 28 times but when i did for 100/3 output is 33.333333333333333333333333333 ie 27 times 3 why???? and when i store 2876.1234567891234567891234567891m in decimal variable it is showing 2876.1234567891234567891234568 why i am not getting??? pls help me... i am really very confused.
@BestDotNetTraining
@BestDotNetTraining 3 жыл бұрын
Thanks a Lot Join the Whatsapp group to get updates on the latest software technologies, webinars and more WhatsApp - chat.whatsapp.com/BcK51bWs2sg2zAJgiF2Bh9
@bansidharpadhy102
@bansidharpadhy102 8 жыл бұрын
Hi Sir,I have watched complete video with perfect attention.one thing i noticed is you could not manage to explain properly about memory allocation on types.From your video,its clear that 1.The value of All local variables (i.e Argument variable,reference variable (which holds address of reference type),local declaration variable) are stored in Stack memory area. 2.The value of Reference type (i.e Objects.Strings,Array,Delegate...) stored in Managed Heap. 3.The value of Value type are stored in Either Managed Heap or Stack Memory Area depending upon scope(block level/class level) of variable 3.1--if block level,then value of value type will be allocated memory on stack area 3.2--if class/global level,then value of value type will be allocated memory on Managed Heap Area. 4.all type of variable gets memory for temporary time inside RAM by CLR. And stay long depending upon scope or current execution inside Execution Engine under CLR. Hope,i am right and its all about your recommendation to watch video completely without absent mind.Thank you sir. I request you sir,please share a video on "How String variable will be managed inside a structure in c#.".
@BestDotNetTraining
@BestDotNetTraining 8 жыл бұрын
what you have understand looks perfect regarding string, you will find more videos on our website
@bansidharpadhy102
@bansidharpadhy102 8 жыл бұрын
+BestDotNetTraining Thank you for your consideration .I do not have much doubt on string.but how memory could be managed for string inside structure ?
@sanjuktasahu2864
@sanjuktasahu2864 5 жыл бұрын
It is data not deta
Final muy increíble 😱
00:46
Juan De Dios Pantoja 2
Рет қаралды 47 МЛН
когда повзрослела // EVA mash
00:40
EVA mash
Рет қаралды 3,9 МЛН
OMG🤪 #tiktok #shorts #potapova_blog
00:50
Potapova_blog
Рет қаралды 18 МЛН
Khó thế mà cũng làm được || How did the police do that? #shorts
01:00
Final muy increíble 😱
00:46
Juan De Dios Pantoja 2
Рет қаралды 47 МЛН