what does "generate method stub" mean in c#?

code-generation, visual-studio

Solution

It means that you're trying to call the function incorrectly; check to make sure you've spelled the method name correctly, and that you're passing it the proper number and types of arguments.

Problem

I'm trying to call a function, and VS gives me an error (red underline), and i have the option to "generate method stub". What is this?

Original source