Not sure why you're interested as line counts are a very poor measure of complexity.
For example:
int i = (somevar == true) ? 15 : 12;
int i=0;
if (somevar) {
i=15;
}
else {
i=12;
}
The first is obviously 1 line, the other is 7. Result is the exact same.