How can I determine if List A contains all of the elements from List B in the same order?
List A can have additional elements that List B does not have, but must co
Use String.Join() to concat ListA elements together. Then use it again to concat ListB elements together. Then use ConcatListA.IndexOf(ConcatListB).
String.Join()
ConcatListA.IndexOf(ConcatListB)