无法将类型'string'隐式转换为'var'

时间:2014-07-31 05:10:56

标签: c# string cryptography var

我收到此错误:

  

无法将类型'string'隐式转换为'var'

using System.Web.Helpers;

public partial class test : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {    
        var ss = Crypto.HashPassword("1234");

        Response.Write(ss);
    }
}

1 个答案:

答案 0 :(得分:1)

只需将ss声明为System.String即可。

根据Crypto.HashPassword documentation,返回值的类型为System.String