Templates and STL in C#?
Hello,
am a C++ programmer and a newcomer to C#.
I want to figure out the following two things:
1. Are templates supported in C# as in C++?
Templates as:
template<class T> void tokenize( const string &source, const string &delimiters, vector<T> &tokens )
{
// tokenize function body
};
2. Can STL be used in C#? Can i #include <vector> for example?
Thanks in advance.
Alexander Panov
|