c# - What does this code do? DllImport ExactSpelling -


what code do? have tried researching have had no luck.

[dllimport("kernel32.dll", exactspelling = true)] 

this code attribute tag supposed placed above external declaration of method located in kernel32.dll library.

in practice, see associated method declaration similar to:

[dllimport("kernel32.dll", exactspelling = true)] public static extern bool movefile(string src, string dst); 

see this msdn article details on usage.


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -