I’m working with VB.Net, and have two one-dimensional Arrays. Is there an Inbuilt function for finding the elements that are common to both of them? Or do I have to write one for myself?
I’m working with VB.Net, and have two one-dimensional Arrays. Is there an Inbuilt function
Share
I’m afraid you’ll have to write one for yourself, because there is no built-in function in .NET 2.0.
Look at this StackOverflow question for ideas about how you could implement it yourself.