コード例 #1
0
        public override CallInfo Clone(IEnumerable <ResolvedCallee> possibleCallees)
        {
            var result = new DelegateCallInfo(this, possibleCallees);

            return(result);
        }
コード例 #2
0
 public DelegateCallInfo(DelegateCallInfo other, IEnumerable <ResolvedCallee> possibleCallees)
     : base(other, possibleCallees)
 {
     this.Delegate = other.Delegate;
 }