Is this valid?
byte ptr[];
...
if (null != ptr && ptr.Length 0) {
...
}
(It would be in C)
Or should I break it apart:
if (null != ptr) {
if (ptr.Length 0) {
...
}
}
byte ptr[];
...
if (null != ptr && ptr.Length 0) {
...
}
(It would be in C)
Or should I break it apart:
if (null != ptr) {
if (ptr.Length 0) {
...
}
}
Comment