I have a string that is "1+1". When I do a int.Parse on it, "11" is outputted. Is there any way to make it find the sum?
Code: (settings is IsolatedStorageSettings, which is the 1+1 string)
MessageBox.Show(int.Parse(settings["favoritesnum"].ToString()).ToString());