copy a text right click, select Paste to C# String in menu. insert a C# string with literal like: string input = "xxxxx"; copy a file select Paste to C# String in menu. insert a C# string, the value is file path. sample:
1.copy the json text {"firstName":"Brett","lastName":"McLaughlin","email":"aaaa"} 2.right click, select Paste to C# String in menu. 3.the addin can be insert string input = "{\"firstName\":\"Brett\",\"lastName\":\"McLaughlin\",\"email\":\"aaaa\"}"; |