ExtFor2005.cs 444 B

123456789101112131415161718
  1. 
  2. namespace FastReport.Fonts.LinqExts
  3. {
  4. internal static class ExtFor2005
  5. {
  6. #region Public Methods
  7. public static bool Contains(GlyphSubstitutionClass.LookupTypes[] arr, GlyphSubstitutionClass.LookupTypes value)
  8. {
  9. for (int i = 0; i < arr.Length; i++)
  10. if (arr[i] == value)
  11. return true;
  12. return false;
  13. }
  14. #endregion Public Methods
  15. }
  16. }