We represent MinValue of DateTime as DateTime.MinValue but how is it represented for Byte[]?
When I gave the below,
DALImage.TwinImage = Convert.IsDBNull(reader["TwinImage"]) ?
Byte[].MinValue :
(Byte[])reader["TwinImage"];
- I get the error as 'byte' is a type but use like a variable
- syntax error value expected (in '[]' part of Byte[])
Please Help as am a newbie to C# programming