How do i convert this Main() over to a start()? JSON help.

.

there is no reason why this method would need to be static. If you had taken the time to search the code you posted, you would realize that the ‘args’ array is not used in the code and thus completely unnecessary in this case.
So you simply change

public static void Main(string[] args)

to

private void SomeName()