0

私は最初のコンソールアプリケーションをやっています。WinformApp があり、コードを ConsoleApp にコピーします。問題があります。static void Main から public static void Sending にジャンプする方法がわかりません。これは私のコードのサンプルです...

class Program
{
    static void Main(string[] args)
    {
        int counter; //Counter pro export
        int counterchyba;
        string strediska = "0003,0005";                                   
    }

    public static void Sending(int counter, int counterchyba, string strediska)
    {
        var c = (counter).ToString().PadLeft(5, '0');
        SqlCommand cmd = new SqlCommand();
        .........
    }
}

どうすればそれが正しいのか考えていますか?

4

2 に答える 2