PdfRpt.Export.ExportToXml.isByteArray C# (CSharp) 메소드

isByteArray() 개인적인 정적인 메소드

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