Hello elitepvpers members!
I have few questions about C++ and C++ integrated development environments and their comparison with C#:
List:
1. Are there any ides that contain the auto code list as most C# ides? e.g. C# - Microsoft Visual C# 2008 Express.
2. What are the main namespaces frequently used in C++? e.g in C# it is System namespace.
3. Are there any generic collections in C++? e.g C# - Dictionary<T Key, T Value>, List<T>.
4. Does C++'s definition for interfaces look like C#?
C# version :
<access modifier> interface <identifier>
{
// interface members
}
5. Socket class example in C++, if possible.
Thanks!
,Nullable
I have few questions about C++ and C++ integrated development environments and their comparison with C#:
List:
1. Are there any ides that contain the auto code list as most C# ides? e.g. C# - Microsoft Visual C# 2008 Express.
2. What are the main namespaces frequently used in C++? e.g in C# it is System namespace.
3. Are there any generic collections in C++? e.g C# - Dictionary<T Key, T Value>, List<T>.
4. Does C++'s definition for interfaces look like C#?
C# version :
<access modifier> interface <identifier>
{
// interface members
}
5. Socket class example in C++, if possible.
Thanks!
,Nullable