Catrobat.IDE.Core.Utilities.ProgressEventArgs.ProgressEventArgs C# (CSharp) Method

ProgressEventArgs() public method

public ProgressEventArgs ( int percent, string operationGuid ) : System
percent int
operationGuid string
return System
        public ProgressEventArgs(int percent, string operationGuid)
        {
            _percent = percent;
            _operationGuid = operationGuid;
        }
    }
ProgressEventArgs