The following is a complete program that loads DerelictSDLNet:
import derelict.sdl.net;
void main()
{
DerelictSDLNet.load();
// now you can call SDL_net functions
}
As with other Derelict packages, DerelictSDLNet will throw an exception if an error occurs while loading the shared library. For more information on Derelict exceptions, see the documentation for Loading/Unloading Shared Libraries.
Finally, the method DerelictSDLNet.unload() is provided for convenience. In normal practice you do not need to call this function, as Derelict will unload the library automatically when the app exits. You generally should only use this function if you need to unload DerelictSDL while the application is running.