Everything C#
Everything C#
  • Видео 33
  • Просмотров 230 421
Property name from lambda expression in C#
A common pattern in C# is to pass a property name by using a lambda expression as the parameter. This video shows how to extract that property name from the passed in lambda expression.
The crucial code you need is the following:-
var expression = (MemberExpression)action.Body;
string propertyName = expression.Member.Name;
Effective C# answers common questions about the C# language and the dotnet ecosystem. If you have a programming question about C# or .net then add it as a comment below.
GitHub: github.com/ComponentFactory/CSharpAnswers
Просмотров: 828

Видео

Unleash the Full Potential of C# with These List Patterns
Просмотров 701Год назад
C# has introduced list patterns that allow for simpler, more concise and readable code. Combining existing patterns such as discard, property, logical and so forth makes pattern matching more powerful than ever.
Visual Studio Code and C#: Getting started using these 6 extensions
Просмотров 25 тыс.Год назад
To get the perfect setup for C# and Visual Studio Code you need the 6 extensions outlined in this video. Plus, an extra setting that few know but everyone should be using. 1: C# 2: C# Extensions 3: .NET Code Test Explorer 4: Rosylnator 5: Better Comments 6: CodeSnap
C# Syntactic Sugar: The Secret Ingredient
Просмотров 587Год назад
Syntactic sugar is the secret ingredient that enables the C# compiler to add new features without needing to make changes to the underlying tooling, such as the CLR, JIT, AOT compiler and others. Link: sharplab.io
Visual Studio Code vs Visual Studio
Просмотров 161 тыс.Год назад
Deciding on Visual Studio or Visual Studio Code is not just a personal decision but based on the best option for the operating system and application type you are building. VS Code: code.visualstudio.com/ Visual Code: visualstudio.microsoft.com/
Chunk your LINQ results in C#
Просмотров 469Год назад
Process your LINQ results in chunks by using this little known operator. Effective C# answers common questions about the C# language and the dotnet ecosystem. If you have a programming question about C# or .net then add it as a comment below. GitHub: github.com/ComponentFactory/CSharpAnswers
Add index to LINQ results in C#
Просмотров 412Год назад
You can add an index to the results of a LINQ query by using this simple trick. Effective C# answers common questions about the C# language and the dotnet ecosystem. If you have a programming question about C# or .net then add it as a comment below. GitHub: github.com/ComponentFactory/CSharpAnswers
Shuffle any list in C#
Просмотров 1,2 тыс.Год назад
This handy LINQ extension method provides any easy way to shuffle any IEnumerable list of items. For example, values for a deck of cards or any other type in your application, such as Unity. Effective C# answers common questions about the C# language and the dotnet ecosystem. If you have a programming question about C# or .NET then add it as a comment below. GitHub: github.com/ComponentFactory/...
Compiler internals for the record type in C#
Просмотров 214Год назад
See the code the compiler generates for record types to really understand how they work in C#. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! GitHub: github.com/ComponentFactory/CSharpAnswers
Using IDisposable in C#
Просмотров 3 тыс.Год назад
Implement the IDisposable interface when you have managed or unmanaged resources that need cleaning up without waiting for the garbage collector to run. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! Microso...
Paging results from LINQ in C#
Просмотров 526Год назад
You often need to add paging to a query so the application user can see the results in a table and then move page by page through the data. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! GitHub: github.com/C...
GroupBy multiple properties in LINQ C#
Просмотров 2,5 тыс.Год назад
Sometimes you need to perform a LINQ GroupBy using more than a single property. This video will demo how to do this in C#. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! GitHub: github.com/ComponentFactory/C...
Required keyword in C# 11
Просмотров 254Год назад
The 'required' keyword allows you to reduce the boilerplate code in your projects by using object initialization. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! GitHub: github.com/ComponentFactory/CSharpAnswers
Dynamic LINQ queries in C#
Просмотров 4,7 тыс.Год назад
Sometimes you need to create a LINQ query that is dynamic and can be adapted to requirements such as responding to users clicking on different columns for sorting. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them a...
Difference between IEnumerable and IQueryable in C#
Просмотров 2,8 тыс.Год назад
Many developers use LINQ without knowing the real difference between these two important interfaces. C# Answers provides answers to common questions about the C# language and the related .NET system. Do you have a programming question about C# or .NET that you would like answered? Add it as a comment below and I try to answer them all! GitHub: github.com/ComponentFactory/CSharpAnswers
Join using multiple properties in LINQ in C#
Просмотров 421Год назад
Join using multiple properties in LINQ in C#
Left Outer Join in LINQ in C#
Просмотров 3,3 тыс.Год назад
Left Outer Join in LINQ in C#
Difference between Select and SelectMany in LINQ in C#
Просмотров 6 тыс.Год назад
Difference between Select and SelectMany in LINQ in C#
Multi property ordering, OrderBy, using LINQ in C#
Просмотров 647Год назад
Multi property ordering, OrderBy, using LINQ in C#
Create a multiline string in C#
Просмотров 379Год назад
Create a multiline string in C#
Raw string literal pattern in C# 11
Просмотров 111Год назад
Raw string literal pattern in C# 11
Differences between a field and a property in C#
Просмотров 5 тыс.Год назад
Differences between a field and a property in C#
Sort a generic List by a property of the objects in C#
Просмотров 6 тыс.Год назад
Sort a generic List by a property of the objects in C#
NullReferenceException and how do I fix it in C#
Просмотров 1 тыс.Год назад
NullReferenceException and how do I fix it in C#
What do two question marks / null coalescing / '??' do in C#?
Просмотров 345Год назад
What do two question marks / null coalescing / '??' do in C#?
Generate a random number in C#
Просмотров 796Год назад
Generate a random number in C#
Best way to catch multiple exceptions in C#
Просмотров 265Год назад
Best way to catch multiple exceptions in C#
Deep clone/copy an object graph in C#
Просмотров 905Год назад
Deep clone/copy an object graph in C#
Iterate over a Dictionary in C#
Просмотров 423Год назад
Iterate over a Dictionary in C#
Case insensitive string.Contains in C#
Просмотров 914Год назад
Case insensitive string.Contains in C#

Комментарии

  • @noncinque
    @noncinque 25 дней назад

    Ah yes, vs vs vs code

  • @BlackJar72
    @BlackJar72 Месяц назад

    Kind of pointless, as in just what the documentation tells you about something fairly simple and straight foward. What would be better to know is if there is any under-the-hood difference between a property and just plain old getters and setters. (Or if they are just "syntactic sugar.")

  • @karimazer-x8x
    @karimazer-x8x Месяц назад

    Hi, can I use language c in visual studio because I did not find it

  • @HarrodRita-b6p
    @HarrodRita-b6p Месяц назад

    Quigley Forks

  • @LesEuell-f2z
    @LesEuell-f2z Месяц назад

    Pacocha Summit

  • @RhondaDavis-p5d
    @RhondaDavis-p5d Месяц назад

    Daryl Junction

  • @ChelseaBerneri-d7j
    @ChelseaBerneri-d7j Месяц назад

    Amanda Avenue

  • @AmandaWaterman-n2q
    @AmandaWaterman-n2q Месяц назад

    Rodriguez Falls

  • @AidaSharp-x3i
    @AidaSharp-x3i Месяц назад

    Eriberto Squares

  • @ArthurValentina-f1k
    @ArthurValentina-f1k Месяц назад

    McLaughlin Mall

  • @ml_serenity
    @ml_serenity 2 месяца назад

    If you use Linux or Windows or Mac OS the only right answer is to use JetBrains Rider.

  • @halladba101
    @halladba101 2 месяца назад

    Thank you so much! So in essence, use VS Code for Web or General use for it's wide-range of supported languages, While use Visual Studio for specific / C# related projects (WinForms and such) But still, you're saying the community version is all what a one needs? Then what the hell is the purpose of the paid Subscription? Is it like for advanced users / certain features?

  • @WheatleyZero-d2j
    @WheatleyZero-d2j 2 месяца назад

    Paucek Walk

  • @HongRauzman-v9x
    @HongRauzman-v9x 2 месяца назад

    Prosacco Court

  • @LambWinni-i7f
    @LambWinni-i7f 2 месяца назад

    Beier Burg

  • @CA_Carilae_KeReRi
    @CA_Carilae_KeReRi 2 месяца назад

    This is what i need! Thank you!

  • @TabithaButler-q9m
    @TabithaButler-q9m 2 месяца назад

    Vandervort Spur

  • @DanielDavis-q8g
    @DanielDavis-q8g 2 месяца назад

    Funk Rapids

  • @CorinnaStiefel-r1v
    @CorinnaStiefel-r1v 2 месяца назад

    Isobel Trafficway

  • @nssnsns-p5h
    @nssnsns-p5h 2 месяца назад

    Reinhold Mountain

  • @ab_obada5012
    @ab_obada5012 2 месяца назад

    Why I can't use Dictionary instead of KeyValuePair to iterate them?. What I know if I want to iterate smth like int array or string array I must use the same type to iterate them even with classes

  • @hayesgeldmacher8592
    @hayesgeldmacher8592 2 месяца назад

    Super helpful, Thank you!

  • @omenplayer8000
    @omenplayer8000 3 месяца назад

    awesome

  • @memoryclips
    @memoryclips 3 месяца назад

    👏👏

  • @indieguy7297
    @indieguy7297 3 месяца назад

    I recognize your voice from Unity!

  • @chebkhaled69
    @chebkhaled69 4 месяца назад

    excellent video. straight to the point, how tutorials should bee

  • @kskunk
    @kskunk 4 месяца назад

    💯Best SelectMany explanation!! Thanks for all the many examples and code!!

  • @HenryEmilyIsHapi
    @HenryEmilyIsHapi 4 месяца назад

    I searched "Vs vs Vs code" and didnt expect to find anything, yet here i am! Great video.

    • @atharvsharma1866
      @atharvsharma1866 4 месяца назад

      my fellow human, u know nothing about internet if you think you will search something and you wouldn't find anything about it. there is something about EVERYTHING, on the internet.

    • @ana_s
      @ana_s 3 месяца назад

      ​@@atharvsharma1866I dont know, I don't get anything when I search "ajshejaksiejabakkdosjb ajajjanrls" on Google

    • @my_daarlin
      @my_daarlin Месяц назад

      when u put it like this is sounds hilarious XD

    • @HenryEmilyIsHapi
      @HenryEmilyIsHapi Месяц назад

      @@atharvsharma1866 The thing is that "vs vs vs code" sounds ridiculous to me and thought that youtube may get confused and only bring up like a vs code tutorial and not a conparison between vs and vscode.

    • @fogone1
      @fogone1 15 дней назад

      *versus versus versus code*

  • @RuDenisska
    @RuDenisska 5 месяцев назад

    Jetbrains!

  • @kagankarakaptan6274
    @kagankarakaptan6274 5 месяцев назад

    useless ?.. saved my life atm.

  • @Ashkannetss
    @Ashkannetss 5 месяцев назад

    Great

  • @cyberulitka
    @cyberulitka 6 месяцев назад

    i adore how your speech is well-written

  • @benjaminlehmann
    @benjaminlehmann 6 месяцев назад

    That was really helpful. Thanks man

  • @jasdfff770
    @jasdfff770 7 месяцев назад

    Nice video!! Which one do you recommend for C developers? Thanks!

    • @sillyred50
      @sillyred50 5 месяцев назад

      visual studio code

  • @_MaiT
    @_MaiT 7 месяцев назад

    I'm linux user. Is writing code on c# and .NET in linux on VSCode painful thing? Should i download virtual machine to have visual studio on windows there?

    • @TheFish2171
      @TheFish2171 Месяц назад

      No, it runs seamlessly on both windows and linux

  • @darkwhite123
    @darkwhite123 7 месяцев назад

    what if there are two lists? a list with won years and a list with participated years. selectMany is executed consecutive? so there will be "stupid" duplicates? do you know of a way to achieve such without duplicates?

  • @venkatshabarish1784
    @venkatshabarish1784 7 месяцев назад

    I want to integrate my my test cases from test plan in azure devops with the automated test cases from visual studio code/visual studio… so that where I automate them the test result in the test plan ado should change Is it possible?

    • @kevinp4468
      @kevinp4468 5 месяцев назад

      Yes let's talk about it

  • @johanneskunz1737
    @johanneskunz1737 8 месяцев назад

    Shouldn't it be private set { _age = Math.Min(120, Math.Max(0, value)); } ??

  • @latedeveloper7836
    @latedeveloper7836 8 месяцев назад

    very helpful - hoping you'll be making more videos soon

  • @RudyJayson450
    @RudyJayson450 8 месяцев назад

    good video.

  • @ccamp3175
    @ccamp3175 8 месяцев назад

    Correct me if I err, but at 2:54, I believe you say "Creating the same project in Visual CODE is much simpler." Isn't this your intro to Visual BASIC, though? You've begun by showing us VBStudio, and now you want us to see Visual BASIC, right? I'm very confused by this.

  • @salmansaeed9278
    @salmansaeed9278 8 месяцев назад

    Very Useful Thanks a bunch

  • @perkonsstudio
    @perkonsstudio 8 месяцев назад

    the most useful video!

  • @k2ybhojpuri
    @k2ybhojpuri 8 месяцев назад

    Totally waste of time 👎🏻

  • @WayneGreen-g8l
    @WayneGreen-g8l 8 месяцев назад

    What makes this LINQ dynamic? Is it the switch statement?

  • @WayneGreen-g8l
    @WayneGreen-g8l 8 месяцев назад

    What is OrderColumn? Is it from the Microsoft.SqlServer.Management.Smo ?

  • @fkbey5756
    @fkbey5756 9 месяцев назад

    Thank you for your clear English and your time.

  • @husanmalhi9405
    @husanmalhi9405 9 месяцев назад

    Can I open the code in vs 2022 that i writted in vs code

  • @Prometheus4096
    @Prometheus4096 9 месяцев назад

    You don't even show how to actually use it. Useless!

  • @mujtabafarhan7098
    @mujtabafarhan7098 9 месяцев назад

    What do you reccoment for flutter devs