Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Practice Problems
  • Python
  • C
  • C++
  • Java
  • Courses
  • Machine Learning
  • DevOps
  • Web Development
  • System Design
  • Aptitude
  • Projects
Similar Topics
C#
1.8k+ articles
CSharp-method
680+ articles
CSharp-Generic-Namespace
130+ articles
CSharp-Specialized-Namespace
91 articles
CSharp-Collections-ArrayList
37 articles
CSharp-Generic-List
34 articles
CSharp-Collections-SortedList
30 articles
CSharp-Collections-Hashtable
20 articles
CSharp-Collections-BitArray
17 articles
CSharp-Collections-Stack
16 articles

CSharp-Collections-Namespace

180+ posts
C# LinkedList
Last Updated: 31 January 2025
In C# aLinkedListis a linear data structure that stores elements in a non-contiguous location. The elements in a linked list are linked with...read more
image
C#
CSharp-Collections-Namespace
CSharp-LinkedList
Object and Collection Initializer in C#
Last Updated: 24 November 2021
An object and collection initializer is an interesting and very useful feature of C# language. This feature provides a different way to init ...read more
C#
CSharp-OOP
CSharp-Collections-Namespace
ArrayList in C#
Last Updated: 19 January 2022
ArrayList is a powerful feature of C# language. It is the non-generic type of collection which is defined in System.Collections namespace. I...read more
image
C#
CSharp-Collections-Namespace
CSharp-Collections-ArrayList
Similar Topics
C#
1.8k+ articles
CSharp-method
680+ articles
CSharp-Generic-Namespace
130+ articles
CSharp-Specialized-Namespace
91+ articles
CSharp-Collections-ArrayList
37+ articles
CSharp-Generic-List
34+ articles
CSharp-Collections-SortedList
30+ articles
CSharp-Collections-Hashtable
20+ articles
CSharp-Collections-BitArray
17+ articles
CSharp-Collections-Stack
16+ articles
C# Queue Class
Last Updated: 31 January 2025
In C#, the QueueT class is the part of the System.Collections.Generic namespace and represent a first-in-first-out (FIFO) collection of obje ...read more
C#
CSharp-Queue-Class
CSharp-Collections-Namespace
C# Stack Class
Last Updated: 31 January 2025
In C#, the StackT class represents a Last-in-First-out (LIFO) collection of objects. The stack is the part of the System.Collections.Generic ...read more
C#
CSharp-Stack-Class
CSharp-Collections-Namespace
C# ArrayList Class
Last Updated: 31 January 2025
ArrayList class in C# is a part of the System.Collections namespace thatrepresents an ordered collection of an object that can be indexed in ...read more
C#
CSharp-Collections-Namespace
CSharp-Collections-ArrayList
C# | Remove all elements of a List that match the conditions defined by the predicate
Last Updated: 01 February 2019
ListT.RemoveAll(PredicateT) Method is used to remove all the elements that match the conditions defined by the specified predicate.Propertie ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | How to get all elements of a List that match the conditions specified by the predicate
Last Updated: 30 August 2022
ListT.FindAll(PredicateT) Method is used to get all the elements that match the conditions defined by the specified predicate. Properties of ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | How to check whether a List contains a specified element
Last Updated: 20 June 2022
ListT.Contains(T) Method is used to check whether an element is in the ListT or not. Properties of List:It is different from the arrays. A l ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Removing a range of elements from the List
Last Updated: 20 June 2022
ListT.RemoveRange(Int32, Int32) Method is used to remove a range of elements from the ListT. Properties of List:It is different from the arr ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Adding the elements of the specified collection to the end of the List
Last Updated: 01 February 2019
ListT.AddRange(IEnumerableT) Method is used to add the elements of the specified collection to the end of the ListT.Properties of List: ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Gets or Sets the element at the specified index in the List
Last Updated: 01 February 2019
ListT.Item[Int32] Property is used to gets or sets the element at the specified index.Properties of List: It is different from the a ...read more
C#
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Adding an element to the List
Last Updated: 01 February 2019
List.Add(T) Method is used to add an object to the end of the List.Properties of List: It is different from the arrays. A list can be re ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Removing the specified element from the List
Last Updated: 01 February 2019
List.Remove(T) Method is used to remove the first occurrence of a specific object from the List.Properties of List: It is different from ...read more
C#
CSharp-method
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
C# | Count the total number of elements in the List
Last Updated: 01 February 2019
List class represents the list of objects which can be accessed by index. It comes under the System.Collection.Generic namespace. List class ...read more
C#
CSharp-Generic-List
CSharp-Collections-Namespace
CSharp-Generic-Namespace
1 2 3 4 5 6 7 8 >>
Last
1 2 3 4 5 6 >>
Last
1 2 3 4 >>
Last
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox