T8SuitePro.Disassembler.CastProgressEvent C# (CSharp) 메소드

CastProgressEvent() 개인적인 메소드

private CastProgressEvent ( string info, int percentage, ProgressType type ) : void
info string
percentage int
type ProgressType
리턴 void
        private void CastProgressEvent(string info, int percentage, ProgressType type)
        {
            if (onProgress != null)
            {
                onProgress(this, new ProgressEventArgs(info, percentage, type));
            }
        }