Part 29 – C# Tutorial – Difference between classes and structs in c#.avi
Link for csharp, asp.net, ado.net, dotnet basics, mvc and sql server video tutorial playlists http://www.youtube.com/user/kudvenkat/playlists My Blog: www.cs…
Video Tutorial Rating: 4 / 5
Don’t forget to check out our other video tutorials or share this video with a friend.
21 responses to “Part 29 – C# Tutorial – Difference between classes and structs in c#.avi”
Leave a Reply Cancel reply
Video Tutorials
Bringing you the best video tutorials for Photoshop, Illustrator, Fireworks, WordPress, CSS and others.
Video tutorial posted 25/07/14
Category: C# Tutorials
Pages
Random Videos
-
iMovie Tutorial – Make a Cool Intro
1,552 views
-
XHTML and CSS Tutorial – 26 – Styling Tables
3,915 views
Video Categories
- 3DS Max Tutorials (150)
- After Effects Tutorials (160)
- C# Tutorials (121)
- Colour (6)
- Crazy Effects (1)
- CSS Tutorials (120)
- Dreamweaver Tutorials (139)
- Excel Tutorials (127)
- Featured (10)
- Fireworks Tutorials (131)
- General Effects (9)
- HTML Tutorials (143)
- Illustration and Vector (1)
- Illustrator Tutorials (174)
- IMove Tutorials (119)
- Lightroom Tutorials (145)
- People and Faces (3)
- Photoshop Tutorials (169)
- Text Effects (7)
- Uncategorized (32)
- WordPress Tutorials (140)
Tags
VideoTutorials.co.uk
-
Videotutorials.co.uk offers the web's best Photoshop tutorials, Illustrator video guides, CSS and HTML tutorials and much more all in one place. With new videos being added every day, you can learn how to master software and code to give your images and website some great effects.
Our site has beginner, intermediate and advanced video tutorials of varying lengths so you can learn a new skill at your own speed and level. So whether you're a web designer, print designer or just wanting to edit some family photos, you can get to it quickly and easily using these free video guides. (more)
will this work in unity?
Very nice job Venkat…
yes, l support what Jahangir Satti said l have made that suggestions
several times,that is only small way will can support and make the lecture
go in,and l no people will contrigiute happily , so pls KUDVENKAT do it,
they community are ask u to do this
Hello Sir, can you please elaborate more on why structs can’t have
parameter-less constructors… didn’t quite get it… thanks :D
what is a good site to download the software for C #
hello… im just asking what are codes in voting system where you cannot
vote twice.. and your next vote will be on next election.. is it with the
use of timer??? thanks to those who will response…
Just wanted to say Thank you for your time and effort
Hi, Venkat.
Thank you for your time spent on these series.
I thought, that this information bellow, will be useful with this movie:
You can’t declare a default constructor (a constructor with no parameters)
for a structure. The following example would compile if Time were a class,
but because Time is a structure, it does not:
struct Time
{
public Time() { … } // compile-time error
…
}
The reason you can’t declare your own default constructor for a structure
is that the compiler always generates one. In a class, the compiler
generates the default constructor only if you don’t write a constructor
yourself. The compiler-generated default constructor for a structure always
sets the fields to 0, false, or null—just as for a class. Therefore, you
should ensure that a structure value created by the default constructor
behaves logically and makes sense with these default values.
From Microsoft Visual C# 2012 Step by Step
hi, could you give me the role of controls below:
* FlowLayoutPanel
* GroupBox
* Panel
* SplitContainer
* TabControl
* TableLayoutPanel
I specify that I am a beginner in programming so please be indulgent.
NB: I’m using Visual C # 2010 Express
if possible so I can have a little demo.
Great tutorial, thanks for posting:)
Thank You So much Venkat. We really really appreciate your help
17:02 was funny. Class became checked ass
hi Sir, b4 anything else i would like to thank you the series of video
tutorials from you. it really helps people like who is new in programming
C# , if it possible can you create a tutorial for socket programming in C#
. thanks in advance
yes, l support what Jahangir Satti said l have made that suggestions
several times,that is only small way will can support and make the lecture
go in,and l no people will contrigiute happily , so pls KUDVENKAT do it,
they community are ask u to do this make a website and put a placeholder
for donation
great teacher
Hello Sir, I have a question for you.. pls help me out!!! Customer C2=C1;
My question is that which object both of these ref var are pointing at, is
that object being referenced by C1 or C2 ?? i am confused coz we created
two instances of class customer class C1 and C2, which means two different
objects would be created right? I couldn’t figure out, which object are
they pointing at. I would really appretiate, if you pls help me out on that
issue. Thank You.
Thanks your series of c# videos have been a great help
What are the availability on difference / equality
Thnx bro.
Hi Venkat, I’ve run into a problem in my code. I’m passing a List from one
class to another, and in the second class I need to modify the list.
Because class is reference type, the list contents are modified. I thought
to use a struct, but my second class also requires a derived class, and
since structs don’t allow inheritance i’m a bit stuck. What would you
suggest?
// You have no conrol over the garbage collector, it runs behind the
scenes. // The data type int is a struct // S1 = S2 // If S1 and S2 are
stuct then S1 and S2 will be 2 different objects on the stack but with the
same values