vote up -1 vote down star

hello, i have a code in c++ of binary search trees & i want to include it to windows form application to do it by windows can any one help me how can i include the code and how to do it and any other code THANX........................

flag

sorry but i want ageneral rule about(how to include my code to windows forms application) i mean if i had a code in c++ how can i include it's output and input to make windows to my code thanks – Thaier Alkhateeb Apr 29 at 11:09

1 Answer

vote up 1 vote down check

Binary search is already built in to the .NET framework.

VB:

 Dim foo As New Collections.Generic.List(Of Integer)
 foo.BinarySearch(3)

C#:

List<Integer> foo = new List<Integer>();
foo.BinarySearch(3);

You could also write a C++ based WinForm if you want to write everything in C++...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.