Tuesday, 26 March 2019

General C# concepts

There are several tips and tricks that are common C# developer practices.

Class and struct members

You create classes and structs to implement your program. These techniques are commonly used when writing classes or structs.

Working with collections

These articles help you work with collections of data.

Working with strings

Strings are the fundamental data type used to display or manipulate text. These articles demonstrate common practices with strings.

Convert between types

You may need to convert an object to a different type.

Equality and ordering comparisons

You may create types that define their own rules for equality or define a natural ordering among objects of that type.

Exception handling

.NET programs report that methods did not successfully complete their work by throwing exceptions. In these articles you'll learn to work with exceptions.

No comments:

Post a Comment