Talk:Rosetta Code/Count examples: Difference between revisions

(New section about problem running the C# sample)
Line 77:
<code>Unhandled Exception: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.</code>
<br>Posts on Stackoverflow suggested adding <code>ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;</code> as the first thing in the Main method, which fixed the problem, however I haven't put this in the actual source as I'm not sure it is the "proper" solution. --[[User:Tigerofdarkness|Tigerofdarkness]] ([[User talk:Tigerofdarkness|talk]]) 11:17, 11 September 2022 (UTC)
 
== Encoding of '+' in task names such as 'A+B' ==
 
I noticed today whilst engaged in the tedious business of updating all Wren solutions to use Wren syntax highighting that encoding the '+' sign to %2B in a task name using as 'A+B' no longer works - at least in Firefox and Chrome. It encodes it as 'A_B' instead. The only way I could get it to work was to use the double encoding %252B. Most other solutions are probably using a built-in method for this but may be worth checking that they still work. [[User:PureFox|PureFox]] ([[User talk:PureFox|talk]]) 11:40, 3 February 2024 (UTC)
9,476

edits