コード例 #1
0
ファイル: LogWriter.cs プロジェクト: yanyitec/Itec.Logs
        public virtual bool Equals(ILogWriter other)
        {

            if (other.IsCollection)
            {
                return other.Count==0 && this == other.First();
            }
            else return this == other;
            
        }