无法将Webclient.DownloadString()的结果设为公共变量

时间:2018-07-07 18:37:07

标签: c#

我无法弄清楚如何从同一名称空间中的不同类访问结果变量。

从本质上讲,我想将字符串保存在“结果”(位于下面的代码中)中,然后将其写入SQL数据库(我已经编写了代码的这一部分,并且可以正常工作-它包含在public static void Main()部分)

public class Thestring
{
    public void Writejsontoconsole()
    {
        string url = "urlGoesIHere";


        using (var client = new System.Net.WebClient())
        {
           string result = client.DownloadString(url);

        }
    }

0 个答案:

没有答案