Quantcast
Channel: Microsoft Techies
Viewing all articles
Browse latest Browse all 430

Convert class library function into exe?

$
0
0
In the properties of the project -> application tag, change the Output type to console Application.
You need to create a static Main() method as a starting point.

static void Main(string[] args)
    {
    }

Viewing all articles
Browse latest Browse all 430

Trending Articles