Use the "is" operator to use non-duplicated expressions
var input = "15,2";
If you want to get the value with ',' you can usually get it with the following code:
var items = input.Split(',');
var (a, b) = (items[0], items[1]);
You can also use LINQ to do something like this:
(a, b) = input.Split(',').Ch...
dimohy.slogs.dev1 min read