We have in PHP the jagged array declaration is like this:
<?php
$classmates = array ('Name' => array ('Bob', 'Jane', 'Jill'),
'Age' => array (18, 20, 23));
echo $classmates['Name'][1] . ' is ' . $classmates['Age'][1] . ' years old!';
?>
can we do same initialization of array in C#??
If yes than how? also tell me if it is possible to do with data type List?