Comparing Arrays using LINQ in C#
Posted
by Pramodh
on Stack Overflow
See other posts from Stack Overflow
or by Pramodh
Published on 2010-05-26T13:19:39Z
Indexed on
2010/05/26
13:31 UTC
Read the original article
Hit count: 230
hi,
i've two arrays like
string[] a = { "a", "b", "c" };
string[] b = { "a", "b", "c" };
i need to compare the two arrays using linq.
the comparision should take place only if both arrays have same size
© Stack Overflow or respective owner