Salut, je préconise la même solution que Bidou mais pour info, .NET supporte les tableaux de base 1.
Array arr = Array.CreateInstance( typeof( Point ), new int[ ] { 1 }, new int[ ] { 1 } );
MessageBox.Show
(
String.Format
(
"Rank: {0} \r\nLength: {1} \r\nValue: {2}",
arr.Rank, arr.Length, arr.GetValue( 1 )
)
);