当前位置: 代码迷 >> ASP.NET >> asp.net -_- 这个该怎么写.
  详细解决方案

asp.net -_- 这个该怎么写.

热度:4003   发布时间:2013-02-25 00:00:00.0
asp.net -_-!!!! 这个该如何写...........................................
set trayUtil = CreateObject("EpTrayUtil.Util")
userInfo = trayUtil.DecryptDataList(pubkey, strMD5SecureKey, strNewDataList)


汗了 C#的语法该怎么写啊。。。
PS:大家能推荐些学习C#的教程嘛。。。。

------解决方案--------------------------------------------------------
使用反射,就很简单。下面的代码没有经过测试, 不过我想应该不会有什么大问题。

Type type = Type.GetType("EpTrayUtil.Util"); 
object o = type.Assembly.CreateInstance("EpTrayUtil.Util");
type.InvokeMember(
"DecryptDataList", 
System.Reflection.BindingFlags.InvokeMethod, 
null, 
o,
new object[] {pubkey, strMD5SecureKey, strNewDataList})
------解决方案--------------------------------------------------------
EpTrayUtil.Util trayUtil = new EpTrayUtil.Util
userInfo = trayUtil.DecryptDataList(pubkey, strMD5SecureKey, strNewDataList) 

------解决方案--------------------------------------------------------
探讨
EpTrayUtil.Util trayUtil = new EpTrayUtil.Util
userInfo = trayUtil.DecryptDataList(pubkey, strMD5SecureKey, strNewDataList)
  相关解决方案