If Option Strict is set to On, which of the following statements will assign the contents of

Question:

If Option Strict is set to On, which of the following statements will assign the contents of the txtSales control to a Double variable named dblSales?
a. dblSales = txtSales.Text
b. dblSales = txtSales.Text.Convert.ToDouble
c. Double.TryParse(txtSales.Text, dblSales)
d. TryParse.Double(txtSales.Text, dblSales)

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: