C#

If you are looking for articles on C# programming language, then this page is the right place for you. C# is widely used programming language in .NET framework. Apart from .NET framework, you can use C# also in unity3d game engine to edit your script. This page will provide you a series of articles to learn concepts of C#.

C# articles

  • Data Type Conversion :- This article will help you to understand implicit and explicit conversion in C#. It will also give you insight of is and as operator in C#.
  • Boxing and Unboxing :- This article explains boxing and unboxing concepts in C#.
  • Nullable Value Types :- This article explains about nullable value types in C# and null-coalescing operator.
  • String and StringBuilder :- This article explains difference between string and stringbuilder in C#.
  • Indexers in C# :- This article will help you to understand basic concepts of Indexers in C#.

Delegates

  • Delegates in C# :- This article explains basics concepts of delegates in C#. It also explains multicast delegate.
  • Asynchronous method calling in C# :- This article explains about how you can call a method asynchronously in C#.
  • Anonymous Methods :- This article explains about what an anonymous method is and where it is used?

Threading

  • Threading :- This article explains basic concepts of threading in C#.
  • Multithreading :- This article explains how you can create thrads in C# and call a method asynchronously with this newly created thread.
  • Thread Pooling:- This article explains basics of thread pool.
  • Task parallelism:- This article gives an idea about how tasks can be used to achieve parallelism.

Generics

  • Tuples in C#: This article explains tuples in C# including C# 7.0.