I found in one smart book one simple question... how to use DLLIMPORT (user32.dll and CallMe method... Two answers: a) [DllImport("user32.dll")] publi ..... b) [DllImport("user32.dll"), EntryPoint="CallMe")] publi.... In my opinion answer A is correct, but in this smart book correct answer is B. Why?