我正在使用在线IDE(http://www.frosthawk.net/)来运行我的C#代码,在编译时我收到错误
错误ID:CS0234,错误:名称空间'System.Security.Cryptography'中不存在类型或命名空间名称'Xml'(您是否缺少程序集引用?),行:26,列:36
任何人都可以告诉我如何使用在线IDE将此引用添加到我的代码中,因为我无法右键单击并添加我们以前常用的引用
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Security.Cryptography.Xml;
using System.Text;
using System.Xml;
public class SignVerifyEnvelope
{
public static void Main(String[] args)
{
try
{
......
答案 0 :(得分:0)
也许你错过了这个:
//重要使用方法:
//#通过单击“参考”链接
添加/管理参考//#单击“设置”链接
管理您的构建设置
点击参考并修复您的参考资料。
如果您不确定需要哪个参考,可能需要浏览MSDN以获取帮助。这里的参考是 System.Security命名空间。