.NET Reflection

  Рет қаралды 11,436

Coding Tutorials

Coding Tutorials

3 жыл бұрын

Always gazing at your reflection? C# is just as vain as you are.
Source code available at: github.com/JasperKent/Reporti...

Пікірлер: 40
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
Do get in touch with other subjects you'd be interested in. Source code at: ttps://github.com/JasperKent/Reporting-with-Reflection Remember to subscribe at kzbin.info/door/qWQzlUDdllnLmtgfSgYTCA And if you liked the video, click the like button.
@SharafMansour
@SharafMansour 3 жыл бұрын
Amazing video as always looking forward for creating custom attributes. Also I think the story of dynamic Vs object Vs anonymous will be great if it’s explained by you. As I know little about when should I use Which.
@jayakumar2927
@jayakumar2927 3 ай бұрын
How to validate all the models
@TWLink1
@TWLink1 3 күн бұрын
Thank you for your clear and precise explanation. An old dog (me) learned a new trick today!
@PWRR
@PWRR Жыл бұрын
Thanks for covering the "Why" and not just the 'What"! "Just because you 'can' doesn't mean you 'should'." => This why I always want to know 'Why'. ;)
@rodrigo6459
@rodrigo6459 2 жыл бұрын
This must be the BEST reflection tutorial EVER!!! GREAT JOB!
@Don-ii4vm
@Don-ii4vm 3 жыл бұрын
Excellent Video, Thank you. I would have given a thumbs up for the the string range tip (10:50 onwards) alone.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 3 жыл бұрын
Yes, I think I'll do a video on those C#8 range and index features.
@CodingTutorialsAreGo
@CodingTutorialsAreGo 2 жыл бұрын
That video is up now: kzbin.info/www/bejne/f2G7amZ5rq9naac
@Don-ii4vm
@Don-ii4vm 2 жыл бұрын
@@CodingTutorialsAreGo Excellent. Thank you very much.
@jotave4992
@jotave4992 4 ай бұрын
You are the best. Hugs from Brazil.
@xtfgrw
@xtfgrw Жыл бұрын
The name of this guy showed "Jasper" and I cannot believe how fitting that name is for this guy. 100% a Jasper.
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
🤣
@DongoBongKong
@DongoBongKong Жыл бұрын
This channel is very underrated!
@jluisip
@jluisip 2 жыл бұрын
Great video, clear, concise, and easy to follow example.
@raymondschenk9964
@raymondschenk9964 Жыл бұрын
Great video on reflection!! Very straightforward!
@jacfarjama467
@jacfarjama467 2 жыл бұрын
Great tutorial. Please posting these kind of videos.
@termuxparadev
@termuxparadev 3 жыл бұрын
That's perfect! Thank you so much for the video. In my case, I'm building an editor for SQL and C#. I've already been able to implement the syntax highlight feature, but I need to implement intellicense. Based on the last video you made about code analysis. Would I have any way to generate my class(dll) by my editor, and after that, have access to her members by my intellicense?. Would you know what form I could get to the .NET word feature list? Thank you!
@ohaRega
@ohaRega 2 жыл бұрын
Excellent explanation
@andreaskonomis3
@andreaskonomis3 2 жыл бұрын
Very helpful. Thank you very much!
@mouaadelalami9076
@mouaadelalami9076 Жыл бұрын
Fantastic video thank you so much
@ZachGH1
@ZachGH1 2 жыл бұрын
Great video - thanks again!
@bobbolkov4866
@bobbolkov4866 Жыл бұрын
This is so awesome!
@vipasane
@vipasane Жыл бұрын
Was it just to teach about C#8 to get rid of trailing commas but String.Join(',',prop.names) would take the complexity away with a single line of code. Great content.
@putinstea
@putinstea Жыл бұрын
Thx professor
@IBITZEE
@IBITZEE 3 жыл бұрын
Nice info... thanks!
@markogrdinic5126
@markogrdinic5126 Жыл бұрын
At 10:58, I'd instead prefer to map the properties to their name and then do a string.Join with the comma separator. That way you could do it all on one line, and unlike in your version, wouldn't get an exception thrown when the properties collection is empty.
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
Yes. String.Join is much better.
@nononnomonohjghdgdshrsrhsjgd
@nononnomonohjghdgdshrsrhsjgd Жыл бұрын
Can you tell me, what s the best way to watch your series, if I am new in c#?
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
I've not really done much for absolute beginners, but I'm thinking about adding some material.
@nononnomonohjghdgdshrsrhsjgd
@nononnomonohjghdgdshrsrhsjgd Жыл бұрын
@@CodingTutorialsAreGoThank you for responding. I was asking whether there s a guide, how to watch the series, in order to understand them.
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
@@nononnomonohjghdgdshrsrhsjgd Nothing very formal. The playlists give some idea of how things fit together.
@gogagate7056
@gogagate7056 Жыл бұрын
on 9:30, the horizontal line (|) was added inside of the parenthesis of GetProperties() method to separate BindingFlags.Public and BindingFlags.Instance. What does that mean? Why can't I use comma (,) instead of the line? code 👇 ... _type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
Sorry, I seem to have overlooked your message. It’s an example of a Flags enum. Probably worth a video in its own right, so I’ll put it on the list.
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
Here's the video: kzbin.info/www/bejne/hqGahWCFaMl8qNU
@gogagate7056
@gogagate7056 Жыл бұрын
@@CodingTutorialsAreGo appreciate ♥Your videos are detailed and well explained 🙏 Keep them coming
@user-pq7jj4rh2n
@user-pq7jj4rh2n Жыл бұрын
Very thankful for this video, don't you think about support on buymeacoffee, for example?
@CodingTutorialsAreGo
@CodingTutorialsAreGo Жыл бұрын
I may get round to it one day.
C# Covariance
17:27
Coding Tutorials
Рет қаралды 7 М.
Implementing IEnumerable
17:35
Coding Tutorials
Рет қаралды 10 М.
Joven bailarín noquea a ladrón de un golpe #nmas #shorts
00:17
I Need Your Help..
00:33
Stokes Twins
Рет қаралды 131 МЛН
Bro be careful where you drop the ball  #learnfromkhaby  #comedy
00:19
Khaby. Lame
Рет қаралды 40 МЛН
Enums considered harmful
9:23
Matt Pocock
Рет қаралды 191 М.
The Dispose Pattern
16:28
Coding Tutorials
Рет қаралды 9 М.
Achieving compile-time performance  with Reflection in C#
21:34
Nick Chapsas
Рет қаралды 34 М.
Garbage Collection (Mark & Sweep) - Computerphile
16:22
Computerphile
Рет қаралды 232 М.
.NET Core Garbage Collection
14:54
Coding Tutorials
Рет қаралды 21 М.
Stackalloc and Spans
30:17
Coding Tutorials
Рет қаралды 8 М.
C# 10 Part 2 - Records, Structs and Record Structs
19:32
Coding Tutorials
Рет қаралды 6 М.
Understanding .NET C# Heaps (Deep Dive)
28:23
Raw Coding
Рет қаралды 11 М.
Трагичная История Девушки 😱🔥
0:58
Смотри Под Чаёк
Рет қаралды 375 М.
Nokia 3310 versus Red Hot Ball
0:37
PressTube
Рет қаралды 3,7 МЛН
What’s your charging level??
0:14
Татьяна Дука
Рет қаралды 7 МЛН
📱 SAMSUNG, ЧТО С ЛИЦОМ? 🤡
0:46
Яблочный Маньяк
Рет қаралды 1,7 МЛН
#miniphone
0:18
Miniphone
Рет қаралды 11 МЛН
How Neuralink Works 🧠
0:28
Zack D. Films
Рет қаралды 32 МЛН