C# 代理模式 ISubject.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ProxyModelDemo
{
    public interface ISubject
    {
        List<String> GetSomethingLong();
        void DoSomethingLong();
    }
}
 

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/89428649