C# - How to add Properties to Classes

  Рет қаралды 59,361

Coffee Cup Dev

Coffee Cup Dev

Күн бұрын

Join my newest Facebook group: www.facebook.co...
For source code in this video visit:
c-tuts.com/c-sh...
Quick video on how to add porperties to classes by fabio Scopel.

Пікірлер
@chamelion1red
@chamelion1red 12 жыл бұрын
Happy to find you...No SHOW OFF just straight to the point, clear & only Important things......keep posting....god bless.
@revipod
@revipod 11 жыл бұрын
I have seen plenty of tutorials on C# but yours are absolutely amazing. I seem to understand everything you say. You make the videos short and straight to the point. Thanks a lot man!
@Coffeecupdev
@Coffeecupdev 14 жыл бұрын
Time my friends, my time. I work, and go to school.. Very time consuming. I'll be posting more videos as soon as I can. Thx for watching.
@Bartnick81
@Bartnick81 6 жыл бұрын
The clearest explanation I have encountered, man you got talent, thank you!
@LazarJovovicLaki
@LazarJovovicLaki 6 жыл бұрын
The topics in all your tutorials are clearly explained. The best c# youtuber :))
@Johnwingchun
@Johnwingchun 14 жыл бұрын
As always great video! I actually feel things are starting to make sense now - As somebody else said these video's = hours and hours of reading etc . Thanks so much!
@seanmcgovern6907
@seanmcgovern6907 8 жыл бұрын
I quite like ur tutorials, your easier to understand. thanx....
@sureshsunkara4396
@sureshsunkara4396 12 жыл бұрын
Thanks you so much..it helps me a lot..keep posting...that was an excellent description that i never seen before...thank u once again!!
@catalindeluxus8545
@catalindeluxus8545 8 жыл бұрын
Thank you for the concise, well made and right to the point video!
@davidnguyen225
@davidnguyen225 12 жыл бұрын
I have spent hundreds of dollars on books that don't compare to what I learned from your tutorials. Great Job Fabio !!! Wondering if you can do some videos on setting up a password authentication page where a user can log on by creating an id and password; then once the user logs on, he/she can view his or her saved data. Thank you in advance. God Bless.
@gamie123456
@gamie123456 6 жыл бұрын
very good Fabio, I really understood properties this way, thank you.
@momomi104
@momomi104 8 жыл бұрын
for the "turn on and off" method, you can pass the if and use: state = !state
@fiddley
@fiddley 13 жыл бұрын
fantastic! Been reading from 4 different books and none of them made sense... just need to rewatch the video in slow motion to make sure I understand!
@frajirek90
@frajirek90 11 жыл бұрын
Thank you for the informative video. Could you do one on polymorphism and inheriting, please?
@juncraul
@juncraul 15 жыл бұрын
Why you don't make more part for this video if youtube have a limit of 10 min?
@KhalidAfridi1
@KhalidAfridi1 6 жыл бұрын
Nice video and explanations, made me laugh when a dog was barking in background @4:45 time line :)
@shawnlesner
@shawnlesner 12 жыл бұрын
hello fabio.. where are the other parts of this series of videos??
@Technophileginfo
@Technophileginfo 12 жыл бұрын
Very Very Useful Lecture.I want more Lecture about Properties oop If You Can ! I shall be thankful to you
@Grandpas51
@Grandpas51 11 жыл бұрын
Great vids!
@adapass
@adapass 14 жыл бұрын
when i try to evaluate the following condition as below in the Car class file if (value == "K10" || value="K20") } i am getting the following error when i build the solution Error 1 Operator '||' cannot be applied to operands of type 'bool' and 'string' C:\WindowsFormsApplication1\WindowsFormsApplication1\Car.cs 31 21 WindowsFormsApplication1
@mazazekooo
@mazazekooo 14 жыл бұрын
Nice way to put the accessors ;
@bransonkuria1347
@bransonkuria1347 11 жыл бұрын
this vids are just owesome but dude cant you like make one project completely ie the bookregistration project video?....that way its easier to learn the relationship of the stuff that your making
@nelisiwemalngeni3706
@nelisiwemalngeni3706 11 жыл бұрын
i don't know how to create a method in a class to display output using a label ...error "label is not available int the current context"
@Coffeecupdev
@Coffeecupdev 11 жыл бұрын
I am not sure if I understand your problem entirely, but it sounds like what you need to do if to have a method that returns a string, and assign that method to the label.Text. In other words: static class SomeClass{ static string SomeMethod(){ return "Some text"; } } in this case your label will look something like: label1.Text = SomeClass.SomeMethod(); I hope this helps. You can get more help on our G+ Community Check it out: Learn C# - The Right Way
@Redraptorxx
@Redraptorxx 12 жыл бұрын
These videos are very helpfull, thank you.
@Coffeecupdev
@Coffeecupdev 14 жыл бұрын
@adapass All I see if the wrong operand here [value="K20"]. Try this: if (value == "K10" || value == "K20") { //Your logic here; }
@edonis2787
@edonis2787 12 жыл бұрын
great video, very clear
@testkg
@testkg 14 жыл бұрын
Very informative.Thanks
@manpreetsingh-qh7pz
@manpreetsingh-qh7pz 7 жыл бұрын
thanks you very much for poviding this information
@arslanali774
@arslanali774 6 жыл бұрын
Great Work !
@mmaranta785
@mmaranta785 2 жыл бұрын
Good info!
@DUESIA
@DUESIA 11 жыл бұрын
Muito Bom!! Great Job! :)
@kelvinmasakadza2725
@kelvinmasakadza2725 9 жыл бұрын
thank you big time
@vinaytripathi2028
@vinaytripathi2028 10 жыл бұрын
nice video
@BryanSwanSQLServerBI
@BryanSwanSQLServerBI 13 жыл бұрын
What a beast
@prutvx
@prutvx 14 жыл бұрын
thx
@DougMeiser
@DougMeiser 12 жыл бұрын
beatin the shit outta that keyboard
@PnDa89
@PnDa89 8 жыл бұрын
SPEED LIKE RABBIT CLEAR LIKE I HAD IT//
@Dresmor
@Dresmor 12 жыл бұрын
bool val=false; val=val==false; //val is went to true
@napipilitangmagaral
@napipilitangmagaral 13 жыл бұрын
you look like drake onanah
C# - How to add methods to a class
10:18
Coffee Cup Dev
Рет қаралды 45 М.
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
C# Events and Delegates Made Simple | Mosh
32:04
Programming with Mosh
Рет қаралды 955 М.
C# classes 📦
4:54
Bro Code
Рет қаралды 87 М.
My 10 “Clean” Code Principles (Start These Now)
15:12
Conner Ardman
Рет қаралды 312 М.
31 nooby C++ habits you need to ditch
16:18
mCoding
Рет қаралды 847 М.
What are Classes, Objects, and Constructors?
4:22
Web Dev Simplified
Рет қаралды 150 М.
C# multithreading 🧶
6:59
Bro Code
Рет қаралды 167 М.
CLASSES vs STRUCTS in C++
8:32
The Cherno
Рет қаралды 483 М.
C# 15  - Class Properties
9:01
VoidRealms
Рет қаралды 24 М.
Learning C# In A Week... Otherwise I Fail University
9:04
C# - How to LINQ to Objects
8:24
Coffee Cup Dev
Рет қаралды 33 М.
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН