Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Url Encode
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { var testURl = "https://securecode.lisa.mastercard.com/acspage/cap"; var actionUrl = System.Web.HttpUtility.UrlEncode(testURl); Console.WriteLine("Test Url :"+ testURl); Console.WriteLine("HttpUtility.UrlEncode :"+actionUrl); actionUrl = System.Net.WebUtility.UrlEncode(testURl); Console.WriteLine("WebUtility.UrlEncode :"+actionUrl); } } }
run
|
edit
|
history
|
help
0
Product, Category, Composition and Inheritance
findrotations
Homework3
Reverse String in for loop
adxsadxsd
Operator Overloading + Operator
test
ds
exception implicit toString
Task 1_4