About 45,300,000 results
Open links in new tab
  1. c# - What's does the dollar sign ($"string") do? - Stack Overflow

    C# string interpolation is a method of concatenating,formatting and manipulating strings. This feature was introduced in C# 6.0. Using string interpolation, we can use objects and …

  2. c# - How to mark a method as obsolete or deprecated? - Stack …

    Jul 16, 2020 · How do I mark a method as obsolete or deprecated using C#?

  3. c# - What is [Serializable] and when should I use it? - Stack Overflow

    I found out that some classes use the [Serializable] attribute. What is it? When should I use it? What kinds of benefits will I get?

  4. What does the [Flags] Enum Attribute mean in C#?

    Aug 12, 2008 · Flags itself does nothing. Also, C# does not require Flags per se. But the ToString implementation of your enum uses Flags, and so does Enum.IsDefined, Enum.Parse, etc. Try …

  5. c# - What does the => operator mean in a property or method?

    See this post Difference between Property and Field in C# 3.0+ on the difference between a field and a property getter in C#. Update: Note that expression-bodied members were expanded to …

  6. Quick way to create a list of values in C#? - Stack Overflow

    Quick way to create a list of values in C#? [duplicate] Asked 16 years, 3 months ago Modified 1 year ago Viewed 279k times

  7. c# - Send HTTP POST request in .NET - Stack Overflow

    How can I make an HTTP POST request and send data in the body?

  8. What does question mark and dot operator ?. mean in C# 6.0?

    What does question mark and dot operator ?. mean in C# 6.0? Asked 10 years, 5 months ago Modified 3 years, 9 months ago Viewed 576k times

  9. What is the difference between & and && operators in C#

    Nov 12, 2010 · I am trying to understand the difference between & and &&operators in C#. I searched on the internet without success. Can somebody please explain with an example?

  10. What do two question marks together mean in C#?

    Jan 15, 2009 · Ran across this line of code: FormsAuth = formsAuth ?? new FormsAuthenticationWrapper(); What do the two question marks mean, is it some kind of …