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

Поділитися
Вставка
  • Опубліковано 21 тра 2024
  • 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 роки тому +98

    Constructive programming note: when replacing the random number 69 with a string, you should always use the random string "Nice"

  • @ExpensivePizza
    @ExpensivePizza 2 роки тому +17

    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 Рік тому +1

      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 роки тому +8

    Awesome video for knowing ins and outs of c#

  • @ironnoriboi
    @ironnoriboi 2 роки тому +8

    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 роки тому +10

      You can pattern match on tuples.
      if (await SomeMethod() is (succes: true, result: {} value)) DoStuff(value);

    • @ironnoriboi
      @ironnoriboi 2 роки тому +2

      @@anderskehlet4196 Interesting! I did not know that.

  • @CodeEvolution
    @CodeEvolution 2 роки тому +19

    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 роки тому +1

      @@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.

  • @justinwhite2725
    @justinwhite2725 2 роки тому +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.

  • @jansankala981
    @jansankala981 Рік тому

    English language made me chuckle hard on the "One of them with out, and one of them without.......out" :) lovely comedic insert

  • @JohnAAddo
    @JohnAAddo 2 роки тому

    Hi Nick, Great video.
    I'll really appreciate a video on Covariance and Contravariance

  • @barmetler
    @barmetler 2 роки тому +28

    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 роки тому +8

      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 роки тому +11

      ​@@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 роки тому +1

      @@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.

  • @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.

  • @CHITUS
    @CHITUS 2 роки тому +1

    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?

  • @jahoopyjaheepu497
    @jahoopyjaheepu497 Рік тому

    Great video; thank you!

  • @PaulSebastianM
    @PaulSebastianM 2 роки тому +1

    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

  • @nobody_cs
    @nobody_cs 2 роки тому +17

    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 роки тому +6

      Yeah someone commented this one and it blew my mind. I didn't know about that

    • @JonathanGray89
      @JonathanGray89 2 роки тому +1

      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.

  • @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 роки тому +1

      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

  • @betterlifeexe4378
    @betterlifeexe4378 2 роки тому +1

    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.

  • @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!

  • @JonathanPeel
    @JonathanPeel 2 роки тому +1

    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?

  • @fat-freeoliveoil6553
    @fat-freeoliveoil6553 2 роки тому +7

    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).

  • @benniebees
    @benniebees 2 роки тому +1

    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.

  • @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?

  • @kiranshetty8342
    @kiranshetty8342 2 роки тому +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

  • @matteobarbieri2989
    @matteobarbieri2989 2 роки тому

    Impressive 👍

  • @JVimes
    @JVimes Рік тому

    I didn't know about struct size vs intptr size and performance. Can't seem to find that in a quick google.

  • @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 роки тому +1

      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 роки тому +1

      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

  • @shayvt
    @shayvt 2 роки тому

    I'm waiting for the var & co-var :)

  • @dimalisovyk5277
    @dimalisovyk5277 2 роки тому +4

    Great video. thanks. So does it affect performance for the reference types as well?

    • @nickchapsas
      @nickchapsas  2 роки тому +3

      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 роки тому +1

      @@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 роки тому +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 роки тому +1

      @@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.

  • @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?

  • @lipa44
    @lipa44 2 роки тому

    What autocode extension are you using? Want to install the same))

  • @isme3821
    @isme3821 2 роки тому

    nice!

  • @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.

  • @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

  • @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 роки тому +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

  • @patfre
    @patfre 2 роки тому +3

    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 роки тому +2

      Do you mean C# events?

    • @patfre
      @patfre 2 роки тому

      @@nickchapsas yes I mean C# events

    • @nickchapsas
      @nickchapsas  2 роки тому +6

      @@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

  • @MrHandsy
    @MrHandsy 2 роки тому

    I like Nick the editor. Swell fella.

  • @stevojohn
    @stevojohn 2 роки тому

    Can you do a video about covariance and contravariance please?

  •  Рік тому +3

    You missed the perfect opportunity for a video name here...
    "The ins and outs of the in and out keywords"

  • @1Eagler
    @1Eagler 6 місяців тому

    12:00 why does this happen? Is it a pointer for either in or ref?

  • @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 роки тому +1

      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 роки тому +1

      @@DryBones111 Lucky you, I hav a video about records coming out next Thursday

  • @tarsala1995
    @tarsala1995 2 роки тому

    I recommend Konrad Kokosa videos and readings about performance. He knows the subject :)

    • @nickchapsas
      @nickchapsas  2 роки тому +1

      Konrad is great. I’ve read his book, it’s amazing, even though half of it went over my head

  • @justwatching6118
    @justwatching6118 2 роки тому +1

    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 роки тому +7

    How to set random values:
    Noobs: var x = 1;
    Nerds: var x = 3.14159;
    Nick: var x = 69;

    • @clonkex
      @clonkex Рік тому +1

      I always just go for 42

  • @vladkondratenko7397
    @vladkondratenko7397 2 роки тому

    @Nick Chapsas do you use "copilot" or something else?

  • @user-tk2jy8xr8b
    @user-tk2jy8xr8b 2 роки тому +1

    Strangely, today I learned "out" is "ref" in IL and several hours later saw your video

  • @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 роки тому +1

      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 роки тому +1

      @@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 роки тому +1

      @@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.

  • @jjxtra
    @jjxtra 2 роки тому +1

    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.

  • @maurosampietro9900
    @maurosampietro9900 Рік тому

    What about ref struct and readonly ref struct? Let me know if you are gonna benchmark that. Love your content. Bye!

  • @Vindignatio
    @Vindignatio 2 роки тому +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

  • @billrob458
    @billrob458 2 роки тому

    You failed to link your lowering video. "Click up here" Thanks for the content.

  • @shmloney
    @shmloney 2 роки тому

    What version of rider is this? It looks different

  • @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.

  • @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" 😂

  • @tiagodagostini
    @tiagodagostini 2 роки тому

    Translatign to C++, in is const& in parameter.

  • @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

  • @sarvarthmonga5764
    @sarvarthmonga5764 Рік тому

    Kya baat

  • @grayscale-bitmask
    @grayscale-bitmask 2 роки тому +1

    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 роки тому +1

      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 роки тому +1

      @@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

  • @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 роки тому +1

      Are you using a struct?

    • @user-uh2nv6qr8q
      @user-uh2nv6qr8q 2 роки тому +3

      Вопрос: нахуй тебе ридонли в геттере?

    • @patfre
      @patfre 2 роки тому

      Maybe your using an older .Net version?

    • @10199able
      @10199able 2 роки тому

      @@user-uh2nv6qr8q ради 3 нс видимо :D или сколько у него там вышло

    • @user-uh2nv6qr8q
      @user-uh2nv6qr8q 2 роки тому

      @@10199able Микрооптимизации головного мозга...

  • @clearlyunwell
    @clearlyunwell 2 роки тому

    👍🏽

  • @darioabbece3948
    @darioabbece3948 2 роки тому

    In is basically the C const pointer

  • @Vastlee
    @Vastlee 2 роки тому

    You promised a link @ 9:40

  • @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

  • @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...

  • @erbenton07
    @erbenton07 2 роки тому

    Turtles mating :
    In
    out
    in
    out

  • @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 😂

  • @brunoccs
    @brunoccs 2 роки тому +1

    Hello everybody I'm gibberish

    • @nickchapsas
      @nickchapsas  2 роки тому +1

      I should rename the channel at this point

  • @root317
    @root317 2 роки тому +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 роки тому +1

      @@pfili9306 Personally I still find it funny.

    • @nickchapsas
      @nickchapsas  2 роки тому +7

      @@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 роки тому +3

      @@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. 😂😂😂😂

  • @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 роки тому +1

      @@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

  • @chefbennyj
    @chefbennyj 2 роки тому

    That's what she said 🤨😁

  • @surgeon23
    @surgeon23 2 роки тому +3

    "in this case 10, AS THE COMPILER SUGGESTS" xD

    • @mylo5641
      @mylo5641 2 роки тому +1

      he actually said "as copilot suggests", since he's using github copilot

  • @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.

  • @timseguine2
    @timseguine2 Рік тому

    The defensive copies the compiler generates really violates the principle of least surprise in my opinion.

  • @sergiuszzalewski1947
    @sergiuszzalewski1947 2 роки тому +3

    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 роки тому +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 роки тому +1

      I don't set the rules, UA-cam 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 роки тому +1

      @@nickchapsas "Should we initialize an out parameter before a method returns?" by pvs-studio

  • @bahtiyarozdere9303
    @bahtiyarozdere9303 2 роки тому

    When the first number Nick picks is "69" to convert...

  • @Igor-dd7ru
    @Igor-dd7ru 2 роки тому

    Eu sei que tem um brasileiro lendo isso, então eu conto ou vc conta?🤣

  • @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.

  • @fretje
    @fretje 2 роки тому

    U wouldn't call 420 "whatever"... or maybe I would :-D

  • @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 Рік тому +1

      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.

  • @adambickford8720
    @adambickford8720 2 роки тому +1

    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.

  • @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 роки тому +1

      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 роки тому +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 роки тому +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?