【发布时间】:2012-12-09 06:38:20
【问题描述】:
我正在使用在线 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
{
......
【问题讨论】:
-
原始标题中的链接是什么? stackoverflow.com/questions/4410258/…