In Silverlight 2, using C # on ASP.NET, you can pass a set of initialization parameters by assigning a line to the Silverlight InitParams object containing a pair of key / value pairs, separated by commas.
I have seen other systems that have a similar mechanism for transmitting collections of key / value pairs as a single line.
What is a solution to indicate a value that has a comma in it?
For example, this line has no problem:
string s1 = "key1=value1,key2=value2";
but it does:
string s2 = "key1=value1,key2=two,values";
i.e. "two values" must have some comma delay ...
source share