Answer the question
In order to leave comments, you need to log in
4 variations of the Main method in c#?
What are 4 variations of the Main method?
Answer the question
In order to leave comments, you need to log in
class Authorized {
constructor() {
this.jwt = require('jsonwebtoken')
this.secretKey = 'dSjkLsSjerIfkL'
}
...
public static void Main()
{
}
public static void Main(string[] args)
{
}
public static int Main()
{
}
public static int Main(string[] args)
{
}
C# 7.1
public static void Main();
public static int Main();
public static void Main(string[] args);
public static int Main(string[] args);
public static Task Main();
public static Task<int> Main();
public static Task Main(string[] args);
public static Task<int> Main(string[] args);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question