Name: Anonymous 2006-07-11 12:02
----✂--------✂--------✂----
using System.Collections.Generic;
…
List<string> dinosaurs = new List<string>();
// ^ This is line 8, char 14.
----✂--------✂--------✂----
$ mcs -unsafe+ -optimize+ -target:module dupa.cs
dupa.cs(8,14): error CS1002: Expecting `;'
Compilation failed: 1 error(s), 0 warnings
----✂--------✂--------✂----
It sucks. Doesn't Mono support generics? It has to, otherwise I won't be able to make my wavelet compression program O_O
Or… Do you know any good tutorial with explanation how to use dynamic arrays under C#? Or any other fast array-like collections?
using System.Collections.Generic;
…
List<string> dinosaurs = new List<string>();
// ^ This is line 8, char 14.
----✂--------✂--------✂----
$ mcs -unsafe+ -optimize+ -target:module dupa.cs
dupa.cs(8,14): error CS1002: Expecting `;'
Compilation failed: 1 error(s), 0 warnings
----✂--------✂--------✂----
It sucks. Doesn't Mono support generics? It has to, otherwise I won't be able to make my wavelet compression program O_O
Or… Do you know any good tutorial with explanation how to use dynamic arrays under C#? Or any other fast array-like collections?