personally I just write the function call, wait for my IDE to complain that the function doesnt exist, press command enter to have it generated with a throw new NotImplementedException().
works well for me, gives me the illusion of a working api, and I get autocompletion.
This requires you to give your functions well thought out names though
Comments
personally I just write the function call, wait for my IDE to complain that the function doesnt exist, press command enter to have it generated with a throw new NotImplementedException().
works well for me, gives me the illusion of a working api, and I get autocompletion.
This requires you to give your functions well thought out names though