We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the file/line: csharp/concepts/generic-types/introduction.md it says "In the above example code we are instantiating a list of strings.", but there is no example code above if viewing from this link: https://exercism.org/tracks/csharp/concepts/generic-types
I'd fork and make a PR, but I'm not sure if the line should just simply be removed, or if something was forgotten.
Example if you wanted to add it:
List<string> strings = new List<string>();
The text was updated successfully, but these errors were encountered:
We should probably slightly rephrase and provide an example of how to instantiate a generic type. Maybe something like:
List<string> strings = new List<string>(); List<int> integers = new List<int>();
Sorry, something went wrong.
No branches or pull requests
In the file/line: csharp/concepts/generic-types/introduction.md
it says "In the above example code we are instantiating a list of strings.", but there is no example code above if viewing from this link:
https://exercism.org/tracks/csharp/concepts/generic-types
I'd fork and make a PR, but I'm not sure if the line should just simply be removed, or if something was forgotten.
Example if you wanted to add it:
The text was updated successfully, but these errors were encountered: