ApiParser.ProgressEventArgs.ProgressEventArgs C# (CSharp) 메소드

ProgressEventArgs() 공개 메소드

public ProgressEventArgs ( int current, int total )
current int
total int
        public ProgressEventArgs(int current, int total)
        {
            Current = current;
            Total = total;
        }
ProgressEventArgs