Iniciar DLL usando o programa C #

Eu tenho um aplicativo de formulário c # ... eu criei uma DLL ... agora eu quero iniciar essa DLL usando este programa. Como eu faço isso?

#include <windows.h>

typedef int (*function1_ptr) ();

function1_ptr function1=NULL;

int APIENTRY WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { 

HMODULE myDll = LoadLibrary("Dll1.dll"); 

    if(myDll!=NULL) {  
        function1 = (function1_ptr) GetProcAddress(myDll,"function1");  

        if(function1!=NULL)  
            function1();
        else
            exit(4);

        FreeLibrary(myDll);
    }
    else
        exit(6);
    GetLastError();

    return 0;
}

Este foi o código usado para testar minha dll ... ou seja, Dll1.dll ..function1&nbsp;foi a função dentro dll1.dll ..... posso fazer algo semelhante com o código c # ??