C Sharp Managing Data Collections Tutorial Videos for Beginner - PowerPoint PPT Presentation

About This Presentation
Title:

C Sharp Managing Data Collections Tutorial Videos for Beginner

Description:

C Sharp Managing Data Collections Tutorial provides brief explanation on how manage collections of data also Courseing provides best online, videos and classroom training on C Sharp for beginners – PowerPoint PPT presentation

Number of Views:43

less

Transcript and Presenter's Notes

Title: C Sharp Managing Data Collections Tutorial Videos for Beginner


1
C Managing Data Collections Tutorial Videos for
Beginners by
2
Highlights
  • Using simple arrays
  • Using multidimensional arrays
  • Managing ordered data with lists
  • Managing unordered data with dictionaries

3
Using simple arrays
  • Similar data can handled more efficiently when
    stored and manipulated as a collection.
  • Collections are two types Generic collections
    and non-generic collections.
  •  System.Collections is a very important namespace
    in the programmers perceptive.
  • ArrayList is one of the important classes in the
    System.Collection namespace.
  • ArrayList is a dynamic array it will increase
    the size of the storage location as required. It
    stores the value as object.

4
Using simple arrays
  • Array have many methods to manage data
    collections. They are

5
Using multidimensional arrays
  • Multi-dimensional arrays are also called
    rectangular array.
  • Syntax string , names Two Dimensions,
  • int , , m Three Dimensional
  • Multidimensional arrays may be initialized by
    specifying bracketed values for each row.
  • 2-dimensional array is the easiest form of the
    multidimensional array.
  • Using the subscript elements we can access
    2-dimensional array.

6
Managing ordered data with lists
  • Collection classes are a group of classes
    designed specifically for grouping together
    objects and performing tasks on them.
  • List class is a collection and defined in the
    System.Collections
  • Generic namespace and it provides the methods and
    properties like other Collection classes such as
    add, insert, remove, search etc.
  • Syntax Listltintgt iList new Listltintgt()
  • Adding new values to the arrays using list
    follows
  • Syntax iList.Add(2)

7
Managing unordered data with dictionaries
  • Dictionaries in C sharp is like a hash table in
    some applications.
  •  It's an unordered collection of data. 
  • Each item in the collection has a key and a
    value.
  • Data dictionary is one tool organizations can use
    to help ensure data accuracy.
  • Provides a descriptive list of names,
    definitions, and attributes of data elements to
    be captured in an information system or database.

8
Feedback
Like It ? Hate It?
We would love to hear from you whatever you think
about the course.
Click HERE to share what you think!
9
Thank you
Thank You for Watching C Managing Data
Collections Tutorial Videos for Beginner by
http//www.courseing.com
Write a Comment
User Comments (0)
About PowerShow.com