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.