If you're including it as part of your project/solution and want it deployed with your executable then you probably want to look at using embedded resources. At compile-time these will get embedded within your exe and remain accessible to the application at runtime.
This StackOverflow answer explains it[
^] quite well, you just need to change the images "Build Type" to embedded resource, and then you can access those resources programmatically.