这是C#写的dll 
using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; namespace Dlltest 

    public class DllClass 
    { 
        public int add(int a, int b) 
        { 
            return a * b; 
        } 
    
    } 
  

现在我要在delphi中调用DllClass类的add方法,什么调用