-2

オンライン IDE (http://www.frosthawk.net/) を使用して C# コードを実行していますが、コンパイル時にエラーが発生します。

エラー Id: CS0234、エラー: 型または名前空間名 'Xml' が名前空間 'System.Security.Cryptography' に存在しません (アセンブリ参照がありませんか?)、行: 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
    {

     ......
4

1 に答える 1