A
Archil Phanchulidze
I'm newbie in VB.NET
I have two string arrays A and B
Dim A() as String = {"A","B","C"}
Dim B() As String = {"C","D","E"}
I need to find in A() array elements which contains B() array and remove
it.
for example I need to find string C in A array and remove it.
I'm now using BinarySearch method and Array.Clear() but seems I do
something wrong.
Is any other way ?
Can anybody help me ?
I have two string arrays A and B
Dim A() as String = {"A","B","C"}
Dim B() As String = {"C","D","E"}
I need to find in A() array elements which contains B() array and remove
it.
for example I need to find string C in A array and remove it.
I'm now using BinarySearch method and Array.Clear() but seems I do
something wrong.
Is any other way ?
Can anybody help me ?