Is there anything like STL in Visual Basic , e.g a binary tree , quick sort
Do I have to implement those algorithms myself , does Microsoft provide any useful interface ?
Thanks !
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The .NET Base Class Library (BCL), which is part of the .NET Framework would be the equivalent.
There is no binary tree per se (although some are implemented as trees), but sorting is already handled. There are plenty of sorts Array.Sort(), List.Sort(), Linq OrderBy and plenty of collections that sort themselves. See classes the System.Collections.Generic namespace.