0% found this document useful (0 votes)
47 views7 pages

Programming C# 2.0, 3.0, 4.0: Muhammed Ali Sakhi Microsoft Certified Trainer

This document provides an agenda for a training session on programming C# 2.0, 3.0, and 4.0. The agenda covers ArrayList, Stack, and Queue data structures. Specifically, it discusses that ArrayList dynamically resizes and allows adding, sorting, finding and removing different data types, that Stacks follow LIFO using Push and Pop methods, and Queues follow FIFO using Enqueue and Dequeue methods. It concludes with a thank you and indicates there will be a demo of basic collections.

Uploaded by

alisakhi
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views7 pages

Programming C# 2.0, 3.0, 4.0: Muhammed Ali Sakhi Microsoft Certified Trainer

This document provides an agenda for a training session on programming C# 2.0, 3.0, and 4.0. The agenda covers ArrayList, Stack, and Queue data structures. Specifically, it discusses that ArrayList dynamically resizes and allows adding, sorting, finding and removing different data types, that Stacks follow LIFO using Push and Pop methods, and Queues follow FIFO using Enqueue and Dequeue methods. It concludes with a thank you and indicates there will be a demo of basic collections.

Uploaded by

alisakhi
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Programming C# 2.0, 3.0, 4.

Muhammed Ali Sakhi


Microsoft Certified Trainer

© PakDev.net
Agenda
ArrayList
Stack
Queue

© PakDev.net
ArrayList
Requires System.Collections namespace
Works like Arrays, but better

Dynamically Resized

Easy to Add, Sort, Find, and Remove Items

Can contain any type of data

© PakDev.net
Stacks
Types of collection

Follows LIFO Data Structure

Push and Pop methods

© PakDev.net
Queues
Like Stacks

Follows FIFO Data Structure

Enqueue and Dequeue methods

© PakDev.net
Basic Collections

Demo

© PakDev.net
Thank you
PakDev.net

© PakDev.net

You might also like