XRefresh.MatchReason.Clone C# (CSharp) 메소드

Clone() 개인적인 메소드

private Clone ( ) : MatchReason
리턴 MatchReason
        internal MatchReason Clone()
        {
            return new MatchReason(_text, _status);
        }

Usage Example

예제 #1
0
 public ReportInfo(string filename, string fullpath, MatchReason reason)
 {
     this.filename = filename;
     this.reason   = reason.Clone();
     this.fullpath = fullpath;
 }