User Types

Jun 21 2009 4:45 AM
I have been programming in Delphi for some time and now is trying to master C#. In Delphi you can define your own types (not necessary classes) like:
 TArrReal = array of real; 

and use them to define 2d arrays in a manner like:
 MyArray: array of TArrReal;

Is it possible in C#?

Thanx in advance.


Answers (1)