嗨我試圖達到這個目標,但就我而言,我什麼都沒有。 我想添加一些靜態方法的字符串類型,這將返回新的更改字符串。我有:使用系統;如何在Asp.net MVC 2中爲字符串類型創建擴展方法?
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Security.Cryptography;
using System.Text;
namespace TestProject.Models
{
public static class Extension
{
public static string md5(this string input)
{
MD5 HashAlgorithm = new MD5CryptoServiceProvider();
Byte[] InputsBytes = Encoding.UTF8.GetBytes(input3);
Byte[] HashedInput = HashAlgorithm.ComputeHash(InputsBytes);
return BitConverter.ToString(HashedInput);
}
}
}
老實說,我只是不知道它應該在哪裏。我把它放在我的模型目錄中,但我很確定它是錯誤的。它應該在哪裏?那麼呢?我想以這種方式來使用它:
string hashedString = String.md5(input);
輸入3要輸入正確的? – 2010-10-31 20:50:29
是的,因爲這是因爲我簡化了我的代碼在這裏的文本框。 – TrN 2010-10-31 21:04:37