rikcheney
01/26/2016, 4:12 PMval myString: String? = "Hello"
with(myString) {
println(length)
// ... lots more use of Strings properties
}
What is the preferred way to fix the possible null reference to length? (I was half expecting with(myString?) { to work :\)