Related resources for Generics
  • What is Generics in .NET C# with example4/15/2024 4:49:16 AM. Generics in C# represent a cornerstone of modern software development, offering a powerful mechanism for creating reusable and type-safe code. This comprehensive article explores the fundamentals of g
  • Bubble Sort Algorithm in C# with Generic Method Example4/15/2024 3:57:19 AM. Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order. The pass through the list is repeated until
  • Understanding the Art of C# Generics3/1/2024 4:22:06 AM. Unlock the power of C# Generics with our comprehensive guide. Master best practices, explore advanced scenarios, and elevate your coding skills with this in-depth C# Generics tutorial. Learn to write
  • Why we should learn C#?2/26/2024 6:11:34 AM. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability fo
  • Traits and Generics in Rust12/20/2023 11:03:17 AM. In this article, we will explore Traits and Generics in Rust. Explore the power of Rust, a programming language known for speed, memory safety, and clever code writing. Uncover the concepts of 'tr
  • Power Of Yield, Generics And Array In C#10/26/2023 11:28:54 AM. This article tells you an additiional way to get reverse processing of array with help of generics and yield.
  • Generics in C#: Enhancing Code Reusability and Type Safety 10/4/2023 4:24:14 AM. In this article, we will explore the concept of generics in C# with detailed examples, showcasing how they enhance code flexibility and maintainability.
  • Generics In C#10/2/2023 8:31:51 PM. In this article you will learn about Generics in C#.Generics in C# provide a powerful way to create classes, interfaces, methods, and delegates with a placeholder for data types. They enable developer
  • Language Extensions In C# 2.09/13/2023 4:14:47 AM. This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day dev
  • Limitations of ArrayLists in C#9/5/2023 10:13:22 AM. This article discusses some features of ArrayLists and there shortcomings/limitations.
  • Generics in C#9/5/2023 8:59:02 AM. Generics are the most useful C# 2.0 language extensions, beside Anonymous methods, Iterators, Partial types And Nullable types.
  • Introduction to Generic9/5/2023 8:34:49 AM. This article describes an introduction to Generic Class, Methods, Delegates and Interfaces in C# programming.Generics in programming, often referred to as "generic programming" or "gene
  • Using Generics In C#8/26/2023 2:09:08 AM. Learn everything about generics in C#.
  • Generics in C# 8/25/2023 9:14:39 AM. Harness the Versatility of C# Generics: Boost Code Reusability and Type Safety. Dive into how Generics empower adaptable, efficient code, accommodating various data types while maintaining robust type
  • Equality Operator (==) With Inheritance And Generics In C#8/21/2023 11:25:05 AM. Equality Operator (==) With Inheritance And Generics In C#.
  • Using The New Generics Pattern Matching Feature In .NET 712/2/2022 4:38:19 AM. In this article, you will learn how to use the new generics pattern matching feature in .NET 7.
  • Constraints in Generics9/2/2022 10:18:23 AM. Constraints are used in Generics to restrict the types that can be substituted for type parameters. Here we will see some of the commonly used types of constraints.
  • Importance of Generics in C#9/2/2022 9:50:18 AM. This article explains the importance of Generics in C# and how to implement them.
  • Understanding <T> In C#8/31/2022 7:01:25 AM. In this article you will learn about what is &lt;T&gt; in C#.
  • An Introduction to C# Generics8/25/2022 7:01:21 AM. There is a reality; most of the developers confuse about C# Generics. Actually, there is no reason for that. If your background comes from C++ or Java you may understand more easily. What “Templates”
  • Generics in C#8/22/2022 8:18:45 AM. Parametric Polymorphism is a well-established programming language feature. Generics offers this feature to C#. The best way to understand generics is to study some C# code that would benefit from gen
  • Generics And Generic Collections In C#4/25/2022 11:36:38 AM. In this article you will learn about Generics and Generic Collections in C# language.
  • Generics in C# - Part II4/1/2022 10:01:52 AM. In part II of generics in C# we will see how to create generic classes, structures, interfaces, and delegates. We will also see how to create a custom generic collections.
  • Generics in C# - Part I4/1/2022 9:44:48 AM. In Part I of this series you will see the importance of generics, you will learn how to use generic types which in the System.Collections.Generic namespace and you will also learn how to create generi
  • Generics in .Net1/6/2021 11:04:35 AM. This article introduces Generics of .Net (actually the Common Language Infrastructure (CLI)).
  • Implementing Repository Pattern And Dependency Injection In ADO.NET Using Generics In C#11/3/2020 12:57:56 AM. In this article you will learn about implementing Repository pattern and Dependency Injection in ADO.NET using Generics in C#.
  • Understanding Generics In C#4/24/2020 1:28:35 AM. In this article, you will learn about generics In C#.
  • Generics in Swift10/15/2019 8:33:15 AM. In this article, I will give a brief introduction of Generics in Swift.
  • MyFluent - A Validation Framework using .Net Generics and Lambda Expressions (Fluent paradigm)10/1/2019 3:00:49 AM. In this article you will learn A Validation Framework using .Net Generics and Lambda Expressions (Fluent paradigm).
  • Generics in Java9/19/2019 5:57:29 AM. This article provides a brief overview of Generics. After this article one will be capable of working with Java Generics.
  • Introduction of Generics in Java9/13/2019 6:17:39 AM. In this article we are going to describe a new concept of Java which was introduced in J2SE 5.0. In this the system allows a type or method to operate on objects of various types while providing compi
  • C# Generics6/26/2019 1:04:17 AM. In this article, you will learn about C# generics.
  • Basics Of Generic Classes In C#6/10/2019 8:08:16 AM. This article explains how to use a Generic class and why we need to use it.
  • An Elegant C# Data Access Layer using the Template Pattern and Generics5/30/2019 6:18:08 AM. The GOF Template pattern coupled with .NET 2.0 Framework generics provides an awesome synergistic alliance. This article demonstrates how to drastically reduce the amount of code required in buildin
  • An Example of Generics Using C# in ASP.Net3/6/2019 12:06:10 AM. This article explains how generics are useful over non-generics and explains how to reuse code using generics.
  • Generics in C# 2.03/5/2019 5:10:15 AM. In this article, I specifically talk about Generics and how they improve upon arraylists and how they solve the issues posed by ArrayLists.
  • Generics in C#10/26/2018 12:52:10 AM. This article is all about generics in C# and how to improve performance overhead.
  • Say Hello To Swift Generic1/9/2018 10:54:49 AM. If you have not been introduced to Swift generic yet, then definitely you are missing one of the most beautiful things. In this article, we will try to understand generic in a simple way and we will s
  • Default(T) In Generics9/27/2017 11:06:13 PM. Default represents default value of T parameter in generics intructions. In several cases, the default keyword is an absolute unknown and we think it’s unnecessary or its functionality is null. There
  • Reuse Your Code .. Generic Save/Load!1/24/2017 4:05:27 PM. Get the overview of Generic C# .NET Object Save/Load pattern and code.
  • Learn Tiny Bit Of C# In 7 Days - Day 45/12/2016 11:57:13 AM. In this article you will learn about Delegates, Enums, Attributes, Generics in C#. This is part 4 of the series.
  • A Simple Way to Learn Generics11/20/2015 3:40:01 AM. In this article we will look at the basics of generics. Generics is a mechanism offered by the Common Language Runtime (CLR) and programming languages that provide one form of code re-use and algorithm re-use.
  • Generic Binary Search Tree With Keyed Values Using C#1/30/2015 11:38:28 PM. A Binary Search Tree (BST) is a binary tree (max. 2 childs per node) with every node a key and associated value.
  • The quest for the Generic Singleton in C#10/18/2014 12:24:02 PM. While it is a bit tricky to implement the Singleton pattern in C#, the steps necessary are well known. There has however been debate about a generic solution for this. This paper provides 3 possible solutions for the generic singleton, and makes a brief comparison.
  • A Basic Understanding of Generic List5/16/2014 4:38:36 PM. This article provides a basic introduction to the Generic List.
  • The Basic Concepts of Generics in C#12/27/2013 7:05:34 AM. In this article I explain the basic concepts of Generics in C#.
  • Custom Generic EventArgs10/26/2013 9:27:16 AM. Before .NET 2.0, I found myself frequently creating custom EventArgs classes just to return a value from an event and would end of with a lot of extra classes bloating my code base that all basically had the same purpose.
  • Generics in C#10/11/2013 5:33:17 AM. Generics allow us to define type-safe classes without worrying about type safety and performance.
  • All about Generics7/20/2013 1:34:45 PM. Using this article we will learn all about generics in C#.
  • Generics in .NET3/27/2013 5:30:49 PM. In the following article we will see how to use Generics in .NET.
  • Implementing Generics Classes and Functions In C# Programs2/13/2013 3:15:44 PM. Today we'll have a look at how we can implements generics in our program and how we can make our functions, code more robust and less prone to changes in program code.
  • Manage Data in a VB Application (without the Database)11/9/2012 11:12:02 AM. This article provides an approach to building an application that may be used to collect, store, and retrieve data without relying upon a database to get there.
  • Downcasting in Visual Basic.NET11/9/2012 6:32:54 AM. This article describes a simple approach to downcasting in Visual Basic; downcasting merely refers to the process of casting an object of a base class type to a derived class type.
  • New features in C# 2.010/13/2012 5:19:59 AM. In this article, I will learn about and use the new features in C# 2.0 added by the Microsoft designers, such as generics, anonymous methods, partial types, static classes, nullable types, and limiting access to properties.
  • Generics in .NET4/23/2011 12:07:38 PM. An introduction to Generics
  • Downcasting in C#3/2/2009 12:13:35 AM. This article describes a simple approach to downcasting in C#; downcasting merely refers to the process of casting an object of a base class type to a derived class type. Upcasting is legal in C# as the process there is to convert an object of a derived class type into an object of its base class type. In spite of the general illegality of downcasting you may find that when working with generics it is sometimes handy to do it anyway.
  • Manage Data in a Win Forms Application (without the Database)5/12/2008 6:04:13 AM. This article provides an approach to building an application that may be used to collect, store, and retrieve data without relying upon a database to get there.
  • Generics in C# 2.08/17/2007 4:33:38 AM. In this article, I just try to discuss on type safe data structures with the help of Generics in C# 2.0.
  • What is new in C# 2.0?8/13/2007 10:06:35 AM. In this article, I discuss new features added to C# 2.0.
  • TDO - Typed Data Object 2.05/3/2007 12:57:23 AM. Tdo – Typed Data Object is a set made up of a base classes library and a .NET 2.0 source code generator for Data Layers based on Ms Sql Server 2000/MSDE/2005/EXPRESS databases and the .NET Framework 2.0.
  • What the heck is Generics?1/30/2007 5:45:07 AM. Generics are new addition to C# 2.0. This article provides the use of generics and scenarios in which it will be useful.
  • New Features in C# version 2.0 - Partial Types8/31/2006 1:57:33 AM. Partial types are new addition to C# language version 2.0, which is available with the .NET Framework 2.0 or Visual Studio 2005. This article discusses the partial classes and how to create and use them in your applications.
  • Generics in C# 2.02/2/2006 1:09:55 AM. In this article we will see how we can use generics in C#, we have read this concept as templates in C++.
  • New Features in C# 2.0 : Part 112/19/2005 5:11:40 AM. In a two part series I will explain new features introduces in C# language version 2.0. In this article I will talk about generics.
  • What the heck is Generics?12/19/2005 12:26:59 AM. This article provides the use of Generics and scenarios in which it will be useful.