I want to write your own djvu reader in C #. Prompt where to start?
Program write in C # (Winforms) in Visual Studio. The problem arises in that I do not understand how to read djvu. Or rather take it apart to import each image for further display in the program.
DjVu is an open standard. There is a C++-based library which reads the format. You can just copy it if you can open source your code (it's GPL): http://djvu.sourceforge.net/.
If not, you can start with the specs at http://djvu.org/resources/ and code up your own from scratch.
Good luck!