1. 程式人生 > >vb呼叫C#寫的dll

vb呼叫C#寫的dll

的程式碼複製。   
然後你複製這個程式碼   
using System;   
using System.IO;   
using System.Text;   
using System.Runtime.InteropServices;   
using  System.Security.Cryptography;    
namespace Csic   
{   
     // 首先建立介面,這個是Com必須使用的   
     [Guid("61BB24CB-4C2C-40f8-9E13-1AC5E558D56A")]   
     public interface IEncrypt   
     {   
          string Encrypt(string pToEncrypt,string sKey);   
          string Decrypt(string pToDecrypt,string sKey);   
     }   
        
     // 寫介面的實現   
     [Guid("CB52E990-185E-4448-A7E8-C88ECAD563AB")]   
     public class Crypt : IEncrypt   
     {   
          public string Encrypt(string pToEncrypt,string sKey)   
          {   
                // 複製FAQ加密程式碼   
           }   
          
          public string Decrypt(string pToDecrypt,string sKey)   
          {   
                // 複製FAQ解密程式碼   
           }   
     }   
}