Status Updates From Professional C# 7 and .net ...

Professional C# 7 and .net Core 2.0 Professional C# 7 and .net Core 2.0
by


Status Updates Showing 1-3 of 3

order by

Ahmad hosseini
Ahmad hosseini is on page 456 of 1440
In general, if you are writing an executable, try to catch as many exceptions as you reasonably can and handle them in a sensible way. If you are writing a library, it is normally best to catch exceptions that you can handle in a useful way, or where you can add additional information to the context and throw exception types.
Feb 24, 2020 10:51AM Add a comment
Professional C# 7 and .NET Core 2.0

Ahmad hosseini
Ahmad hosseini is on page 311 of 1440
StringBuilder has better performance than String class. It's better to user StringBuilder to do any manipulation of strings, and use String class to store or display the result
Feb 12, 2020 08:35PM Add a comment
Professional C# 7 and .NET Core 2.0

Ahmad hosseini
Ahmad hosseini is on page 263 of 1440
Boxing and it's counterpart, unboxing, enable you to convert value types to reference type and then back to value types.
Feb 04, 2020 12:30AM Add a comment
Professional C# 7 and .NET Core 2.0