Esempio n. 1
0
 private static bool CsVContainsMatchingPropertiesOfClass(PropertyInfo[] properties, string[] firstrowofCsv)
 {
     try
     {
         if (ArrayUtility.CompareTwoArrayForCommonElements(firstrowofCsv, properties))
         {
             return(true);
         }
         return(false);
     }
     catch
     {
         return(false);
     }
 }