var temp = "123456-12569";
var test = temp.Split('-').Last();
After upgrading to RC1, split function gives the following error.
'StringValues' does not contain a definition for 'Split' and no extension method 'Split' accepting a first argument of type 'StringValues' could be found (are you missing a using directive or an assembly reference?)
var temp = "123456-12569";
var test = temp.Split('-').Last();
After upgrading to RC1, split function gives the following error.
'StringValues' does not contain a definition for 'Split' and no extension method 'Split' accepting a first argument of type 'StringValues' could be found (are you missing a using directive or an assembly reference?)