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.
Пікірлер
@chamelion1red12 жыл бұрын
Happy to find you...No SHOW OFF just straight to the point, clear & only Important things......keep posting....god bless.
@revipod11 жыл бұрын
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!
@Coffeecupdev14 жыл бұрын
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.
@Bartnick816 жыл бұрын
The clearest explanation I have encountered, man you got talent, thank you!
@LazarJovovicLaki6 жыл бұрын
The topics in all your tutorials are clearly explained. The best c# youtuber :))
@Johnwingchun14 жыл бұрын
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!
@seanmcgovern69078 жыл бұрын
I quite like ur tutorials, your easier to understand. thanx....
@sureshsunkara439612 жыл бұрын
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!!
@catalindeluxus85458 жыл бұрын
Thank you for the concise, well made and right to the point video!
@davidnguyen22512 жыл бұрын
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.
@gamie1234566 жыл бұрын
very good Fabio, I really understood properties this way, thank you.
@momomi1048 жыл бұрын
for the "turn on and off" method, you can pass the if and use: state = !state
@fiddley13 жыл бұрын
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!
@frajirek9011 жыл бұрын
Thank you for the informative video. Could you do one on polymorphism and inheriting, please?
@juncraul15 жыл бұрын
Why you don't make more part for this video if youtube have a limit of 10 min?
@KhalidAfridi16 жыл бұрын
Nice video and explanations, made me laugh when a dog was barking in background @4:45 time line :)
@shawnlesner12 жыл бұрын
hello fabio.. where are the other parts of this series of videos??
@Technophileginfo12 жыл бұрын
Very Very Useful Lecture.I want more Lecture about Properties oop If You Can ! I shall be thankful to you
@Grandpas5111 жыл бұрын
Great vids!
@adapass14 жыл бұрын
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
@mazazekooo14 жыл бұрын
Nice way to put the accessors ;
@bransonkuria134711 жыл бұрын
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
@nelisiwemalngeni370611 жыл бұрын
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"
@Coffeecupdev11 жыл бұрын
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
@Redraptorxx12 жыл бұрын
These videos are very helpfull, thank you.
@Coffeecupdev14 жыл бұрын
@adapass All I see if the wrong operand here [value="K20"]. Try this: if (value == "K10" || value == "K20") { //Your logic here; }
@edonis278712 жыл бұрын
great video, very clear
@testkg14 жыл бұрын
Very informative.Thanks
@manpreetsingh-qh7pz7 жыл бұрын
thanks you very much for poviding this information
@arslanali7746 жыл бұрын
Great Work !
@mmaranta7852 жыл бұрын
Good info!
@DUESIA11 жыл бұрын
Muito Bom!! Great Job! :)
@kelvinmasakadza27259 жыл бұрын
thank you big time
@vinaytripathi202810 жыл бұрын
nice video
@BryanSwanSQLServerBI13 жыл бұрын
What a beast
@prutvx14 жыл бұрын
thx
@DougMeiser12 жыл бұрын
beatin the shit outta that keyboard
@PnDa898 жыл бұрын
SPEED LIKE RABBIT CLEAR LIKE I HAD IT//
@Dresmor12 жыл бұрын
bool val=false; val=val==false; //val is went to true