Shantanu Gupta
Shantanu Gupta

Reputation: 21188

how to start with windows API in .net

I want to work on windows API. I have an interest in creating network application that can communicate with web as well. I haven't thought any application yet. But before doing all this . I want to know where to start with. What all I need to start reading.

I have created lot of database interactive applications with window forms. But would like to start with this.

Upvotes: 0

Views: 205

Answers (2)

Hans Olsson
Hans Olsson

Reputation: 55001

If you want to use Windows API methods from .Net, you'll need to use PInvoke to call them. There's a site called pinvoke.net that has samples for how you call many of the APIs so if you know which API you want to call, that's usually the best place to start.

Upvotes: 1

JanW
JanW

Reputation: 1849

For your use case maybe you dont need API at all. You could use the FileSystemWatcher .net class to react on any changes in a log folder e.g. It reacts on modify/add/delete of files.

Upvotes: 0

Related Questions