PdfRpt.Export.ExportToXml.isByteArray C# (CSharp) Méthode

isByteArray() private static méthode

private static isByteArray ( CellData item ) : bool
item CellData
Résultat bool
        private static bool isByteArray(CellData item)
        {
            return (item.PropertyValue != null) &&
                   (item.PropertyValue.GetType() == typeof(byte[]));
        }