ApiParser.ProgressEventArgs.ProgressEventArgs C# (CSharp) Méthode

ProgressEventArgs() public méthode

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