C#调用C#写的dll,可以通过[DllImport("a.dll")] 
public static extern int SHGetFileInfo(string pszPath,uint dwFileAttributes,ref SHFILEINFO psfi,uint cbFileInfo, uint uFlags);
方式调用dll吗?(dll是C#写的)
我记得是通过引用,或是反射可以调用,这种方式好像是C#调用非托管代码写的dll