How "out" works in C# and why "in" can make or break your performance

  Рет қаралды 69,180

Nick Chapsas

Nick Chapsas

Күн бұрын

Become a Patreon and get source code access: / nickchapsas
Check out my courses: dometrain.com
Keep coding merch: keepcoding.shop
Hello everybody I'm Nick and in this video I will show you what the in and out keywords do in C# and how the in keyword can be crucial to ensuring good application performance when using structs.
Timestamp:
Intro - 0:00
The "out" keyword - 0:34
The "in" keyword - 7:53
Don't forget to comment, like and subscribe :)
Social Media:
Follow me on GitHub: bit.ly/ChapsasGitHub
Follow me on Twitter: bit.ly/ChapsasTwitter
Connect on LinkedIn: bit.ly/ChapsasLinkedIn
#csharp #dotnet

Пікірлер: 198
@michaelsutherland5848
@michaelsutherland5848 2 жыл бұрын
Constructive programming note: when replacing the random number 69 with a string, you should always use the random string "Nice"
@nickchapsas
@nickchapsas 2 жыл бұрын
I'll open a PR for Microsoft to change. Thanks for pointing up.
@cscscscss
@cscscscss 2 жыл бұрын
that would break code
@hriday684
@hriday684 2 жыл бұрын
@@cscscscss Why, exactly?
@unnilunnium101unknown8
@unnilunnium101unknown8 Жыл бұрын
🤣😅
@ExpensivePizza
@ExpensivePizza 2 жыл бұрын
I used to work on a C# game development library and this kind of low level performance stuff came up quite a lot. It's great to see C# evolving into a language that makes it easier to write the high performance kind of code without needing to do strange things that makes it harder to use and understand. That said, like anything if you're writing this kind of stuff the only real way to know the right thing to do is to measure and benchmark because there are so many little gotchas.
@RiversJ
@RiversJ Жыл бұрын
After a few years in game dev mainly graphics and optimization there is only one aphorism i swear ny, a good test is worth a thousand expert opinions!
@C00l-Game-Dev
@C00l-Game-Dev 4 ай бұрын
And we can hardly use any of the new features BECAUSE UNITY WONT UPDATE THE COMPILER
@ziaulhasanhamim3931
@ziaulhasanhamim3931 2 жыл бұрын
Awesome video for knowing ins and outs of c#
@flaksoft8003
@flaksoft8003 2 жыл бұрын
i see what you did here
@MirrorsEdgeGamer01
@MirrorsEdgeGamer01 2 жыл бұрын
Nice.
@CodeEvolution
@CodeEvolution 2 жыл бұрын
Excellent! You forgot one thing: the 'in' keyword is optional to the caller which is not true for 'out' or 'ref'. I'm a fan of providing the 'in' keyword for clarity of intention when it applies. Knew all these things, but I appreciate the review. The original demo of dramatic performance difference I've seen is when using Parallel and BigInteger. It referenced that the origins of the in keyword came from game devs in Unity since they were suffering heavily from copies.
@Andrew90046zero
@Andrew90046zero 2 жыл бұрын
Interesting... So do you any of the places where the _in_ keyword is used in Unity's api? I don't think I've seen it used, but I guess it would make sence for Vector3 and 4x4 Matrix. But I don't know if I've seen any functions for those structs that use in keyword.
@CodeEvolution
@CodeEvolution 2 жыл бұрын
@@Andrew90046zero No I haven't gone that deep. As I recall, if you had to transition to a larger coordinate system by using something like BigInteger, constantly making copies as your 'actor' moves around the space is performance crushing. The 'in' keyword negates that completely. That said, more recently, 'readonly structs' should make that a non-issue.
@ironnoriboi
@ironnoriboi 2 жыл бұрын
The 'out' on tryParse is better than tuples for this usecase because you can then put the tryParse in an if-statement and use the parsed result in there or skip the entire branch in only a single line. it is very neat.
@anderskehlet4196
@anderskehlet4196 2 жыл бұрын
You can pattern match on tuples. if (await SomeMethod() is (succes: true, result: {} value)) DoStuff(value);
@ironnoriboi
@ironnoriboi 2 жыл бұрын
@@anderskehlet4196 Interesting! I did not know that.
@justinwhite2725
@justinwhite2725 2 жыл бұрын
You just reminded me that 'ref' exists. I'm working on a project with struct architecture and was doing all kinds of hoops around them. All I need is ref.
@barmetler
@barmetler 2 жыл бұрын
I really don't understand why reading a property that has a setter creates a defensive copy. I mean the compiler _knows_ that we aren't using the setter, so why would it care that the property has one? That is really weird to me. I really prefer how in c++ you can express your entire intent clearly and nothing happens at runtime behind the scenes. (const references, rvalue references, const-qualified functions, reference-qualified functions, constexpr, consteval, pointers, ...) If something is a const reference, the compiler forbids you from writing to it, it's as easy as that. C++ does not have properties because it doesn't make sense with how assignment works, but if it did, it would just disallow you from invoking the setter by checking that at compile time.
@nickchapsas
@nickchapsas 2 жыл бұрын
Because the getter is used and since the getter is, at the end of the day, a method that technically can mutate the state of the backing field, the compiler will create defensive copies.
@barmetler
@barmetler 2 жыл бұрын
​@@nickchapsas But why did it work when you removed only the setter? In that case, the getter is also called... Edit: I just noticed that the backing field is written to be readonly during code lowering when only a getter exists. That makes more sense then
@Dominik356
@Dominik356 2 жыл бұрын
@@nickchapsas "getter could mutate the state" This was the piece of information that clears it up for me. Because of how it works, I will basically never want to use that keyword. I cannot think of a single readonly struct I used in any of my projects.
@JohnAAddo
@JohnAAddo 2 жыл бұрын
Hi Nick, Great video. I'll really appreciate a video on Covariance and Contravariance
@sodiboo
@sodiboo 2 жыл бұрын
You're right, i did learn something new. I did not know that mutable byref structs create defensive copies and have more performance overhead than mutable by-value.
@nobody_cs
@nobody_cs 2 жыл бұрын
Interesting fact - you can pass a struct as an out parameter without initializing it inside a method if it (a struct) doesn't have any fields inside. And this behaviour is even not described in the documentation.
@nickchapsas
@nickchapsas 2 жыл бұрын
Yeah someone commented this one and it blew my mind. I didn't know about that
@JonathanGray89
@JonathanGray89 2 жыл бұрын
AFAIK a struct is automatically initialized. So this actually makes sense; If there are no fields to set then there's simply nothing to be done.
@jansankala981
@jansankala981 Жыл бұрын
English language made me chuckle hard on the "One of them with out, and one of them without.......out" :) lovely comedic insert
@betterlifeexe4378
@betterlifeexe4378 2 жыл бұрын
soo much information, have to watch it over and over again. very simple thing I didn't consider, the implications of returning tuples, particularly with nullable types for maximum generalization (with proper null conditionals of course). Does anyone know a clean way of storing tuples with dynamic length and type? Anyone who gets more or less where I'm going with this, please do give me any examples that come to mind.
@PaulSebastianM
@PaulSebastianM 2 жыл бұрын
TLDR; ( No bashing intended though! Great video! ) no modifier - pass a copy of whatever you pass in, noting that if it's a value type, then the copy it's a clone of the value type (effectively a new mem allocation), and if it's a reference type, then the copy is a clone of the reference (a separate new reference but one that points to the same object in memory) ref - pass a copy of the reference held by whatever you pass in; the parameter just points to the same location in memory as the outer variable passed in (even for value types, like int for example) in - akin to a move of the outer reference/var itself into the function, as if it was declared inside, but restricted from modifying it (by assignment, not by methods) out - same as 'in' but the parameter this time MUST be assigned to at least once before exiting the function body
@DanteDeRuwe
@DanteDeRuwe 2 жыл бұрын
I did not even know about the in keyword for method parameters. Interesting stuff, I wonder why it is so little used when it can really signal to the reader that the arguments passed will not be mutated. I see this as a benefit, really. Great vid!
@nickchapsas
@nickchapsas 2 жыл бұрын
I think that the whole immutability concept in C# is fairly new and it's become more popular after records were added, so we might start seeing it even more in the future
@jahoopyjaheepu497
@jahoopyjaheepu497 Жыл бұрын
Great video; thank you!
@fat-freeoliveoil6553
@fat-freeoliveoil6553 2 жыл бұрын
I think the in keyword should be removed in favour of C++ 'const', and thus 'const ref'. It will also allow developers to use readonly values since C# currently can't do this (useful for overridden methods where you want it clear that certain values should remain immutable).
@Miggleness
@Miggleness 2 жыл бұрын
i haven’t seen this mentioned, you can run into defensive copies too with “ref”s if what you’re passing as ref is declared as read only
@codewkarim
@codewkarim 2 жыл бұрын
Sound and clear!
@CHITUS
@CHITUS 2 жыл бұрын
Great video. Do you get defensive copies when using in with get; and init; accessors on properties and for readonly record struct which uses those with a backing field?
@JonathanPeel
@JonathanPeel 2 жыл бұрын
I did not know about the defensive copies, that is very interesting. 99% of the time my structs are read-only, but this is still very good to know. For saving stack allocation, is there any benefit from doing it with an int? I would imagine the reference (which I sure must get allocated) would be the size of the int, or am I wrong? For strings, and structs do you think there is an advantage of using ref or in on logging methods?
@benniebees
@benniebees 2 жыл бұрын
Something that is a little confusing is that, a property is not readonly because it doesn't have a setter. Getters are not automatically readonly (they can mutate state) unless that getter is explicitly marked as readonly. The auto generated getter is marked as readonly under the hood. (ie the "get;" simple getter for properties with implicit backing field). 14:05 But why is, when passing by ref, the fully immutable struct slower than the mutable struct with readonly members? This might look like a few nanoseconds, but it is over 3 times the time.
@marcwyzomirski1659
@marcwyzomirski1659 9 ай бұрын
So I have to ask then; Is there a way to pass a value type by ref but keep the method from making changes to it without using in, and without the performance penalty on non-readonly fields?
@shayvt
@shayvt 2 жыл бұрын
I'm waiting for the var & co-var :)
@dimalisovyk5277
@dimalisovyk5277 2 жыл бұрын
Great video. thanks. So does it affect performance for the reference types as well?
@nickchapsas
@nickchapsas 2 жыл бұрын
No so as I mentioned in the last 30 seconds of the video, fore reference types it doesn't have any performance implication. It is just used if you wanna express intent (telling the reader or consumer that this should be immutable)
@carldaniel6510
@carldaniel6510 2 жыл бұрын
@@nickchapsas I don't think that's true. The in and out keywords always cause the parameter to be passed by reference, even if it's a reference type, resulting in what would be Foo*& in C++. A reference type passed as an 'in' parameter will have an additional indirection for every access, just as a value type will.
@tiagodagostini
@tiagodagostini 2 жыл бұрын
@@carldaniel6510 But a compiler can optimize it if he knows it is "immutable", but I do not know how much C# compilers see outside immediate scope.
@carldaniel6510
@carldaniel6510 2 жыл бұрын
@@tiagodagostini The JIT could optimize away the double-indirection, yes. In the simple case I examined, it did not, but I don't know if it could under the right circumstances. The C# compiler could not optimize it away though - that would change the public signature of the method, breaking clients built with less clever compilers.
@tiagodagostini
@tiagodagostini 2 жыл бұрын
@@carldaniel6510 The signature does not mean much. C++ compilers can and do optimize even keeping the signature, as long as they are able to inline apply the function.
@patfre
@patfre 2 жыл бұрын
Could you make a video of what the best way to make events is? As I have been trying to figure out how to like make code in another file run whenever a value changes
@nickchapsas
@nickchapsas 2 жыл бұрын
Do you mean C# events?
@patfre
@patfre 2 жыл бұрын
@@nickchapsas yes I mean C# events
@nickchapsas
@nickchapsas 2 жыл бұрын
@@patfre I don't think I'm planning on creating a video about events but I am going to be creating a video about why you don't need traditional events
@patfre
@patfre 2 жыл бұрын
@@nickchapsas oh ok I think that might work too because alternatives and other types of events might work better since I just need to be able to detect and execute some code when a thing is true in another class without calling any method in it
@ghostdragon8167
@ghostdragon8167 2 жыл бұрын
Maybe you can try to look into Reactive programing? There is the Reactive Extensions library for this in .NET
@Anequit
@Anequit 2 жыл бұрын
Hey nick after hearing what you said about vs in a comment I made a while back I've switched to rider, but there is one problem.. I'm struggling with configuring rider and I'm wondering if you could do a video like "setting rider up for your environment" where you go over settings and features that could help with production.
@nickchapsas
@nickchapsas 2 жыл бұрын
That’s actually not a bad idea for a video. I’ll add it in the backlog
@Anequit
@Anequit 2 жыл бұрын
@@nickchapsas WOOP WOOP LETS GOO
@jjxtra
@jjxtra 2 жыл бұрын
My biggest complaint about the in keyword: It should be the default, which means passed parameters should not be modifiable by default, since that is bad practice and can lead to bugs. The compiler should be smart enough to use a copy or a pointer (ref) depending on the struct size. Then all the performance gains of large structs are on by default. The performance degradation when using in seems like a compiler bug. If a param needs to be modified, the ref keyword should be required. Obsiously that ship has probably sailed as it would break code everywhere... Great video Nick.
@nickchapsas
@nickchapsas 2 жыл бұрын
Yeah I agree with that. The more I dive into functional languages the more I see the mistakes of OOP and languages like C# and Java. Unfortunately it's too late to change that.
@RsApofis
@RsApofis 2 жыл бұрын
@@nickchapsas Does it mean you'll will cover also F# or some other functional language in the future?
@nickchapsas
@nickchapsas 2 жыл бұрын
@@RsApofis I don't think so. I might make something along the lines of "A C# developer's guide to F#" or something but probably not more than that.
@RsApofis
@RsApofis 2 жыл бұрын
@@nickchapsas It's a pity, because you talk so good about each topic you pick. :) And I really can't find answer to 1 basic difference between FP and OOP. In every 2nd FP tutorial, they say "FP is better because there are no null values..." and then they put everything in Option type or something similar, so instead of (x is null) check they test if it's None or Some(x). If it's Some, they take x, pass it to function and put result to Some. So is there really any benefit in not having nulls at all?
@nickchapsas
@nickchapsas 2 жыл бұрын
@@RsApofis It's not about null itself but rather the idea that the api consumer has to acknowledge the fact that there might be "no value". Languages with null just use the easy way out which can lead to NREs and ultimately cost money. Languages like C# 8+ or Kotlin take the other route and, if used corectly, forces you to deal with nullability. FP isn't about not having null though. There are OOP languages that don't have null.
@user-tk2jy8xr8b
@user-tk2jy8xr8b 2 жыл бұрын
Strangely, today I learned "out" is "ref" in IL and several hours later saw your video
@matteobarbieri2989
@matteobarbieri2989 2 жыл бұрын
Impressive 👍
@MrHandsy
@MrHandsy 2 жыл бұрын
I like Nick the editor. Swell fella.
@kiranshetty8342
@kiranshetty8342 2 жыл бұрын
Hi Nick . Grt video n thanks 👍 Nick could you please explain how nullable data type works . To b precise say for example int? X = null : how compiler treat this statement and memory allocation happens ?? What happens if I add quotation mark next to Int?? Please reply nick .
@C00l-Game-Dev
@C00l-Game-Dev 4 ай бұрын
Legend says he's still waiting to this day
@tarsala1995
@tarsala1995 2 жыл бұрын
I recommend Konrad Kokosa videos and readings about performance. He knows the subject :)
@nickchapsas
@nickchapsas 2 жыл бұрын
Konrad is great. I’ve read his book, it’s amazing, even though half of it went over my head
@lolroflxd
@lolroflxd 11 ай бұрын
The moment when people are used to your current videos and then they see this video and for the 1st time they have to increase the playback speed because they're not used to you talking so "slowly" 😂
@justwatching6118
@justwatching6118 2 жыл бұрын
Wow! I thought all the time that C# needs equivalent of C++ const for argument. Here it is "in" keyword lol The thing I wish for C# to have ASAP is typedef, for a lot of reasons..
@mastermati773
@mastermati773 2 жыл бұрын
How to set random values: Noobs: var x = 1; Nerds: var x = 3.14159; Nick: var x = 69;
@clonkex
@clonkex Жыл бұрын
I always just go for 42
@yummybunny7351
@yummybunny7351 2 жыл бұрын
Thanks for video! Can You say what estension give you that gray suggestion at 3:17 ? And how do you write code outside the class?
@ernest1520
@ernest1520 2 жыл бұрын
Hey, the suggestions is a new feature in Visual Studio 2022. And "code outside class" is a top-level statements feature introduced in .Net6/C#10
@yummybunny7351
@yummybunny7351 2 жыл бұрын
@@ernest1520 thanks, but its not VS 2022, its Rider IDE
@ernest1520
@ernest1520 2 жыл бұрын
Ah yes fair point! :) Knowing Jetbrains their suggestions are probably even more powerful.
@aviinl1
@aviinl1 2 жыл бұрын
That would be GitHub Copilot, look it up, it's amazing!
@jackoberto01
@jackoberto01 2 жыл бұрын
@@ernest1520 Top-level statements were introduced in C# 9 and the suggestions are GitHub Copilot
Жыл бұрын
You missed the perfect opportunity for a video name here... "The ins and outs of the in and out keywords"
@nickchapsas
@nickchapsas Жыл бұрын
YOU ARE HIRED
@frank65972
@frank65972 2 жыл бұрын
Hello, a question related to code completion. I see that for example at 3:17 and 4:34, the Rider IDE gives an code completion suggestion by displaying gray text 'in line'. Now I know that feature from Visual Studio where it is called "Whole Line completion". A (new) feature of Intellisense I think. How do you enable this for Rider IDE?
@colin.sowerbutts
@colin.sowerbutts Жыл бұрын
I think that might have been GitHub Copilot
@stevojohn
@stevojohn 2 жыл бұрын
Can you do a video about covariance and contravariance please?
@JVimes
@JVimes Жыл бұрын
I didn't know about struct size vs intptr size and performance. Can't seem to find that in a quick google.
@billrob458
@billrob458 2 жыл бұрын
You failed to link your lowering video. "Click up here" Thanks for the content.
@lipa44
@lipa44 2 жыл бұрын
What autocode extension are you using? Want to install the same))
@syriuszb8611
@syriuszb8611 2 жыл бұрын
Well, shouldn't precompiler be able to tell if there are operations that could result in modifying any value and then show warning instead or decide whether the defensive copy is needed or not? Especially it should produce warnings with reference types, but it seems like it's not.
@isme3821
@isme3821 2 жыл бұрын
nice!
@Vindignatio
@Vindignatio 2 жыл бұрын
That really seems like a design flaw. If "in" only works well with readonly structs (or readonly properties on those structs), it should be a compiler error to access a non-readonly property altogether. Otherwise it just defeats the purpose of the `in` keyword altogether
@nickchapsas
@nickchapsas 2 жыл бұрын
It's the other way around. in is coming in to fix the flaw that was there with ref readonly
@Maric18
@Maric18 2 жыл бұрын
i kinda want tryparse to return null if its not parseable and an int if it is there is an int? type
@vladkondratenko7397
@vladkondratenko7397 2 жыл бұрын
@Nick Chapsas do you use "copilot" or something else?
@nickchapsas
@nickchapsas 2 жыл бұрын
I use copilot
@AniProGuy
@AniProGuy 2 жыл бұрын
Great Video! :) But I have one question: Lets say I want to pass a struct with a very huge string inside into a method, is this really going to slow down the code? As far as I understand, the string is stored on the heap and as long as I do not modify it, the copy of the struct will just store a pointer onto the same object on the heap. Essentially this would just copy the pointer but not the string, right?
@nickchapsas
@nickchapsas 2 жыл бұрын
Yeah it will. You can see it in the benchmark actually. Passing the struct by copying it will take 3.2ns while passing it by reference takes only 0.0154ms which means it is A LOT faster.
@AniProGuy
@AniProGuy 2 жыл бұрын
@@nickchapsas Thats interesting, but I wonder why it takes so much time. Is it just about copying the pointer or do I got something wrong here? Even though copying the pointer may take a lot of time, it should not scale with the size of the string.
@nickchapsas
@nickchapsas 2 жыл бұрын
@@AniProGuy It doesn't copy the pointer, it copies the whole object, which, for big objects, is expensive. It's very cheap to pass down a IntPtr.Size reference but quite expensive to create a sizable copy of an object.
@AniProGuy
@AniProGuy 2 жыл бұрын
@@nickchapsas Yes I understand this, as long as the structs do only store other value types. But I assumed that if I have a refence type member inside the struct (e.g. a string) it would only copy the pointer to the string and not the whole object (since the string is stored on the heap).
@nickchapsas
@nickchapsas 2 жыл бұрын
@@AniProGuy Yeah that's correct but we have all the other field/properties as well that are also heavy. I don't think I showed an example with a string in a struct actually so I don't have the exact number there.
@maurosampietro9900
@maurosampietro9900 Жыл бұрын
What about ref struct and readonly ref struct? Let me know if you are gonna benchmark that. Love your content. Bye!
@Terria-K
@Terria-K Жыл бұрын
is this still valid in NET 7? I've ran my own benchmark with the same thing as yours and all got the same speed.
@DryBones111
@DryBones111 2 жыл бұрын
How does this change when using records? From my understanding a record is an immutable reference type so does it play differently? Or because its immutable it works the same as a readonly struct using the in keyword by default (I.e. No keyword)?
@nickchapsas
@nickchapsas 2 жыл бұрын
records are not immutable. They can still have mutable members. They are classes with a few default implementations behind the scenes for equality checks
@DryBones111
@DryBones111 2 жыл бұрын
@@nickchapsas Thanks for the clarification. Looks like I should do some more diving into the documentation on records.
@nickchapsas
@nickchapsas 2 жыл бұрын
@@DryBones111 Lucky you, I hav a video about records coming out next Thursday
@grayscale-bitmask
@grayscale-bitmask 2 жыл бұрын
5:39 Friendly reminder that this should be "what it would look like" or just "how it would look." The construction "how X looks like" isn't used/accepted by most native English speakers. Great info in the video though!
@nickchapsas
@nickchapsas 2 жыл бұрын
That’s cool, I’ll keep using whichever comes out more natural to me in the moment. This is a software engineering channel not an English lit one. As long as people can understand what I say I don’t mind being wrong grammatically and there isn’t a single person that watched the video and missed anything because of this mistake. Thanks for the tip though!
@barmetler
@barmetler 2 жыл бұрын
@@nickchapsas I think your English is really good though. I mean some mistakes always happen, and I personally would definitely want to be corrected if I make a mistake so that I don't look like a fool, but it's not that important. I have to say, this is the nicest way you can be corrected on the internet though, so count your blessings :P
@nickchapsas
@nickchapsas 2 жыл бұрын
@@barmetler Oh definitely I appreciate people being kind and explaining those things to me but I find them trivial. You see, phrases like this are so hard engraved in my brain that me, actively thinking to not get them wrong will take away from my train of thought at the time so I don't wanna do that. It's something I'd probably never write but when I talk, it's just there.
@barmetler
@barmetler 2 жыл бұрын
@@nickchapsas Yeah makes sense
@1Eagler
@1Eagler 6 ай бұрын
12:00 why does this happen? Is it a pointer for either in or ref?
@BennettRedacted
@BennettRedacted 2 жыл бұрын
It sounds like 'in' is pretty much only useful as an explicit compiler hint for immutable or read-only fields and objects. Otherwise it's just a ref that doesn't let you mutate values within the method scope.
@tiagodagostini
@tiagodagostini 2 жыл бұрын
Translatign to C++, in is const& in parameter.
@Vastlee
@Vastlee 2 жыл бұрын
You promised a link @ 9:40
@nialltracey2599
@nialltracey2599 2 жыл бұрын
Surely if you have to use readonly structs, there's no point in using the in keyword, as it's now impossible to mutate the data anyway, so it's not adding any security...? Seems to me this is the obvious downside of using an architecture that creates OO object code -- do away with the assumption that any method can be called at runtime and the compiler could enforcing "in" constraints at compile time, making run-time performance better...
@shmloney
@shmloney 2 жыл бұрын
What version of rider is this? It looks different
@clearlyunwell
@clearlyunwell 2 жыл бұрын
👍🏽
@lordicemaniac
@lordicemaniac 2 жыл бұрын
does "in" also create defensive copy for mutable class?
@nickchapsas
@nickchapsas 2 жыл бұрын
Only if the members you're accessing aren't readonly
@erbenton07
@erbenton07 2 жыл бұрын
Turtles mating : In out in out
@darioabbece3948
@darioabbece3948 2 жыл бұрын
In is basically the C const pointer
@sarvarthmonga5764
@sarvarthmonga5764 Жыл бұрын
Kya baat
@jakebs3945
@jakebs3945 2 жыл бұрын
what code completion tool is he using?
@Lmao-ke9lq
@Lmao-ke9lq 2 жыл бұрын
Rider IDE
@clonkex
@clonkex Жыл бұрын
The IDE is Rider and he's got Github's Copilot as well
@maartenvissers1770
@maartenvissers1770 2 жыл бұрын
Can you also do Method(ref int newInt) instead of using an existing int (like you can with out)?
@bwsince1926
@bwsince1926 2 жыл бұрын
I don't even use most of this stuff, maybe because half the time I code in VB 😂
@larryd9577
@larryd9577 2 жыл бұрын
In Java and C# if you pass a variable to a method it is passed by value. That means, if you change fields of the passed variable it affects the variable at the "outside" but if you assign a different instance (a different value) to the passed variable it gets disconnect from the one you passed in the method. With out and ref you work around this mechanic.
@10199able
@10199able 2 жыл бұрын
public double X{ readonly get => _x; set => _x = value; } error CS0106: The modifier 'readonly' is not valid for this item
@nickchapsas
@nickchapsas 2 жыл бұрын
Are you using a struct?
@user-uh2nv6qr8q
@user-uh2nv6qr8q 2 жыл бұрын
Вопрос: нахуй тебе ридонли в геттере?
@patfre
@patfre 2 жыл бұрын
Maybe your using an older .Net version?
@10199able
@10199able 2 жыл бұрын
@@user-uh2nv6qr8q ради 3 нс видимо :D или сколько у него там вышло
@user-uh2nv6qr8q
@user-uh2nv6qr8q 2 жыл бұрын
@@10199able Микрооптимизации головного мозга...
@root317
@root317 2 жыл бұрын
Nice. Using just a random number to explain 😂😂
@pfili9306
@pfili9306 2 жыл бұрын
I wish he would stop already. It was funny for a first few times but at this point it's a little over the top to have it in every video.
@root317
@root317 2 жыл бұрын
@@pfili9306 Personally I still find it funny.
@nickchapsas
@nickchapsas 2 жыл бұрын
@@pfili9306 Oh it's funny every single time for me. Keep in mind that in just the last 30 days the channel saw 50k new unique viewers. It would be a shame to not introduce them to true random numbers.
@evanboltsis
@evanboltsis 2 жыл бұрын
@@pfili9306 There are over 420 other videos that explain the in keyword. Go to them.
@root317
@root317 2 жыл бұрын
@@nickchapsas YES. They need to be educated. Its your responsibility. 😂😂😂😂
@sergiuszzalewski1947
@sergiuszzalewski1947 2 жыл бұрын
Actually out parameters don't have to be always initialized, try running this code: struct MyStruct1 { } struct MyStruct2 { public int SomeField; } struct MyStruct3 { public MyStruct1 SomeField; } struct MyStruct4 { public MyStruct2 SomeField; } void TestOut1(out MyStruct1 myStruct1) { // This compiles } void TestOut2(out MyStruct2 myStruct2) { // This does not compile } void TestOut3(out MyStruct3 myStruct3) { // This compiles } void TestOut4(out MyStruct4 myStruct4) { // This does not compile }
@nickchapsas
@nickchapsas 2 жыл бұрын
Oh interesting, I wasn't aware of this one
@sergiuszzalewski1947
@sergiuszzalewski1947 2 жыл бұрын
@@nickchapsas I have a link to article about this, but can't send links here, could you give me a permission to send a link?
@highlanderdante
@highlanderdante 2 жыл бұрын
That's why we can do out var!
@nickchapsas
@nickchapsas 2 жыл бұрын
I don't set the rules, KZbin just randomly flags them. Could you please paste the name of the blog so I can find it in google? I wanna read it.
@sergiuszzalewski1947
@sergiuszzalewski1947 2 жыл бұрын
@@nickchapsas "Should we initialize an out parameter before a method returns?" by pvs-studio
@chefbennyj
@chefbennyj 2 жыл бұрын
That's what she said 🤨😁
@surgeon23
@surgeon23 2 жыл бұрын
"in this case 10, AS THE COMPILER SUGGESTS" xD
@mylo5641
@mylo5641 2 жыл бұрын
he actually said "as copilot suggests", since he's using github copilot
@timseguine2
@timseguine2 Жыл бұрын
The defensive copies the compiler generates really violates the principle of least surprise in my opinion.
@dorlg6655
@dorlg6655 2 жыл бұрын
not a relevant question, what mic setup do you use?
@nickchapsas
@nickchapsas 2 жыл бұрын
Shure SM7B
@dorlg6655
@dorlg6655 2 жыл бұрын
@@nickchapsas do you use cloudlifter or some other gain boost pre amp?
@nickchapsas
@nickchapsas 2 жыл бұрын
@@dorlg6655 TC Helicon Go XLR so I don't need the cloudlifter, but I had one anyway so I'm using it too. Do you mean the sound is good or bad btw?
@dorlg6655
@dorlg6655 2 жыл бұрын
@@nickchapsas its awesome, better than your old videos with the silver mic
@nickchapsas
@nickchapsas 2 жыл бұрын
@@dorlg6655 Oh thank you! I spend quite a lot of time tryint o tweak it so I was worried that there was a sound quality issue. Yeah my setup is Shure SM7B, GoXRL and CL1 Cloudlifter. In the software I've lowered the lows and the highs a bit and I've added a noise gate and a compressor. In think that's all
@Max_Jacoby
@Max_Jacoby 2 жыл бұрын
The thing surprised me the most is your ability to run program without program entry point. Where's static Main method?
@nickchapsas
@nickchapsas 2 жыл бұрын
It's implied. That was added a year ago in C# 9
@bahtiyarozdere9303
@bahtiyarozdere9303 2 жыл бұрын
When the first number Nick picks is "69" to convert...
@brunoccs
@brunoccs 2 жыл бұрын
Hello everybody I'm gibberish
@nickchapsas
@nickchapsas 2 жыл бұрын
I should rename the channel at this point
@fretje
@fretje 2 жыл бұрын
U wouldn't call 420 "whatever"... or maybe I would :-D
@TheAceInfinity
@TheAceInfinity 2 жыл бұрын
Why they didn't just have it as 'const' or 'readonly' rather than 'in' which to me would improve the readability by a significant amount, is beyond me... 'in' on a parameter from a readability standpoint makes zero sense.
@Igor-dd7ru
@Igor-dd7ru 2 жыл бұрын
Eu sei que tem um brasileiro lendo isso, então eu conto ou vc conta?🤣
@adambickford8720
@adambickford8720 2 жыл бұрын
Not sure this is better than exceptions honestly. It just opens the door for too many tricky bugs, the cure is worse than the disease.
@barmetler
@barmetler 2 жыл бұрын
Are you talking about int.TryParse? I guess it could be bug-prone if you ignore the returned boolean. However, your ide will warn you about unused return values, so I don't see the issue. int.Parse is MUCH slower than int.TryParse in case of an exception. Let me extend you vocabulary with the following way int.TryParse can be used in one expression: int.TryParse(str, out var result) ? $"Success: {result}" : "Failure" When failure happens, the expression case will take orders of magnitude more time and memory.
@adambickford8720
@adambickford8720 2 жыл бұрын
@@barmetler I mean in general. Its ultimately a way for multiple "return" values, typically for errors, much like exceptions in java, tuples in Go and separate callback functions in RX. Then again, I don't even like mutable objects so I'm certainly not down with deviant stuff like mutable references!
@barmetler
@barmetler 2 жыл бұрын
@@adambickford8720 I personally prefer tuples over references, but exceptions really are just intended for situations where the program does something _unexpected._ Invalid user input, i.e., is not unexpected, so the program is not in a faulty state after that. Exceptions are there to protect against bugs, like calling a library function with invalid arguments. That's why exceptions are allowed to be so expensive.
@adambickford8720
@adambickford8720 2 жыл бұрын
@@barmetler I'm talking the general mechanism as a language feature, not the ways its (mis)used in practice. A function generally returns a certain 'shape' (a User, a Func, etc). It's really uncommon to have a contract return radically different shapes (in fact, we try hard to hide those through interfaces and OO, etc), except for errors. A function essentially has a return 'shape' that is the union of all the possible "exits". All of those mechanisms are different ways to express that divergence in the return shape. Each have their pros and cons but I personally don't like the idea that some code, far away, could hold a reference and (asynchronously to my thread) change a value. Looking at the docs it seems they are steering people towards tuples.
@JohnWilliams-gy5yc
@JohnWilliams-gy5yc 2 жыл бұрын
I have no idea why they make "in" to be able to be copied implicitly and hiddenly? As if the design decision simply allows its misuse. This is so weird.
@clonkex
@clonkex Жыл бұрын
As Nick pointed out in another comment, the reason for the defensive copies is because the getter can technically mutate the value (even if no one in their right mind should normally do that). If you remove the setter then the property becomes implicitly readonly so it's guaranteed to be impossible for the value to change.
@JohnWilliams-gy5yc
@JohnWilliams-gy5yc Жыл бұрын
@@clonkex Yea. After all it always looks like you just ~can not~ have a concise poetry without a very complicated actual meaning. The world just doesn't seem fair.
@ciberman
@ciberman 2 жыл бұрын
TLDW: use ref, never use in Edit: wells, it's not what the video says but my personal recommendation in case of doubt
@nickchapsas
@nickchapsas 2 жыл бұрын
That is not what the video is about and it is not the conclusion of the video either.
@ciberman
@ciberman 2 жыл бұрын
@@nickchapsas the problem is, you cannot know if the user using your API or yourself from the future are not going to change the read-only struct to a mutable struct and shoot yourself in the foot (in performance critical scenarios). Ref is easier to remember and the caller could make the defensive copy by himself if he wants to preserve the value.
@Miggleness
@Miggleness 2 жыл бұрын
you bring a valid point. using “in” is an optimisation, it can potentially run faster than “ref” in multi-threaded scenarios since it gives hint to your CPU that “this block of memory is readonly, you dont have to sync this across multiple cores”
@protox4
@protox4 2 жыл бұрын
@@Miggleness That's not true at all. In is exactly the same as out and ref under the hood, and C# never does thread synchronization unless you explicitly tell it to. That's also why you cannot overload a method simply by changing in, out, or ref.
@Miggleness
@Miggleness 2 жыл бұрын
@@protox4 i wasnt talking about thread sync in c# but rather in the memory sync on NUMA cpu architecture. anyhow, looks like you’re right about ref vs in. they should have identical performance with readonly structs
@Bliss467
@Bliss467 2 жыл бұрын
Don't ever write code with out or ref. It makes the code very hard to track and leads to spaghetti
@nickchapsas
@nickchapsas 2 жыл бұрын
You might have very valid reasons to use ref so saying not use it because you find it hard to follow isn’t good advice
@clonkex
@clonkex Жыл бұрын
Out is sometimes necessary to avoid allocations
@99MrX99
@99MrX99 2 жыл бұрын
Great video. Do you get defensive copies when using in with get; and init; accessors on properties and for readonly record struct which uses those with a backing field?
What are record types in C# and how they ACTUALLY work
15:36
Nick Chapsas
Рет қаралды 116 М.
What is Span in C# and why you should be using it
15:15
Nick Chapsas
Рет қаралды 245 М.
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 24 МЛН
одни дома // EVA mash @TweetvilleCartoon
01:00
EVA mash
Рет қаралды 6 МЛН
Did you find it?! 🤔✨✍️ #funnyart
00:11
Artistomg
Рет қаралды 112 МЛН
LEARN how to pass VALUE TYPES  by REFERENCE in C# - Ref, In and Out
24:45
tutorialsEU - C#
Рет қаралды 3,3 М.
What is Covariance and Contravariance in C#: A Complete Overview
11:58
“Turn All Your Enums Into Bytes Now!” | Code Cop #014
8:43
Nick Chapsas
Рет қаралды 33 М.
"Stop Using Async Await in .NET to Save Threads" | Code Cop #018
14:05
You are doing .NET logging wrong. Let's fix it
25:29
Nick Chapsas
Рет қаралды 168 М.
The fastest way to iterate a List in C# is NOT what you think
13:42
Nick Chapsas
Рет қаралды 154 М.
How to Avoid Null Reference Exceptions: Optional Objects in C#
18:13
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 24 МЛН