The type "{0}" is not a generic type (AJTERR10034)
Product(s) | Karo.NET Compiler |
---|
Description
You tried to use generic type parameters on a type which is not generic.
sl.types::string<int>(); // ^^^^^ "sl.types::string" is not a generic type, so specifying a type argument is not valid.
How can I resolve this error?
Remove the generic type parameters.