Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learn C# in 7 days

You're reading from   Learn C# in 7 days Get up and running with C# 7 with async main, tuples, pattern matching, LINQ, regex, indexers, and more

Arrow left icon
Product type Paperback
Published in Oct 2017
Publisher Packt
ISBN-13 9781787287044
Length 306 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Gaurav Aroraa Gaurav Aroraa
Author Profile Icon Gaurav Aroraa
Gaurav Aroraa
Arrow right icon
View More author details
Toc

Table of Contents (9) Chapters Close

Preface 1. Day 01 - Overview of the .NET Framework FREE CHAPTER 2. Day 02 - Getting Started with C# 3. Day 03 - What's New in C# 4. Day 04 - Discussing C# Class Members 5. Day 05 - Overview of Reflection and Collections 6. Day 06 - Deep Dive with Advanced Concepts 7. Day 07 - Understanding Object-Oriented Programming with C# 8. Day 08 - Test Your Skills – Build a Real-World Application

Hands-on exercises


  1. Define generic classes by creating generic code of StringCalculator: https://github.com/garora/TDD-Katas/tree/develop/Src/cs/StringCalculator
  2. Create a generic and non-generic collection and test which one is better as per performance.
  3. We have discussed code snippets in the section-Why one should use Generics? that tells about run-time compilation exceptions. In this regard, why should we not use the same code in the following way?
internal class Program 
{ 
      private static void Main(string[] args) 
{ 
    //No exception at compile-time or run-time 
    ArrayList authorEditorArrayList = new ArrayList {
    "Gaurav Arora", 43, "Vikas Tiwari", 25 }; 
    foreach (var authorEditor in authorEditorArrayList) 
    { 
        WriteLine($"{authorEditor}"); 
    } 
}     
} 
  1. What is the use of the default keyword in generic code, elaborate with the help of a real-world example.
  2. Write simple code by using all 3-types of predefined attributes.
  3. What is the default restriction type for...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime