C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

ログ内検索
  • キーワードを複数指定する場合は 半角スペース で区切ってください。
  • 検索条件は、(AND)=[A かつ B] (OR)=[A または B] となっています。
  • [返信]をクリックすると返信ページへ移動します。
キーワード/ 検索条件 /
検索範囲/ 強調表示/ ON (自動リンクOFF)
結果表示件数/ 記事No検索/ ON
大文字と小文字を区別する

No.49398 の関連記事表示

<< 0 >>
■49398  Re[5]: C#でDF.exeのような比較ツール作成での改行判断
□投稿者/ れい -(2010/05/03(Mon) 09:59:09)
            public int IndexOf(DifferenceListEntry item) { return _list.IndexOf(item); }
    
            void IList<DifferenceListEntry>.Insert(int index, DifferenceListEntry item) { throw new InvalidOperationException(); }
    
            void IList<DifferenceListEntry>.RemoveAt(int index) { throw new InvalidOperationException(); }
    
            public DifferenceListEntry this[int index] {
                get { return _list[index]; }
                set { throw new InvalidOperationException(); }
            }
    
            #endregion
    
            #region ICollection<DifferenceListEntry> メンバ
    
            void ICollection<DifferenceListEntry>.Add(DifferenceListEntry item) { throw new InvalidOperationException(); }
    
            void ICollection<DifferenceListEntry>.Clear() { throw new InvalidOperationException(); }
    
            public bool Contains(DifferenceListEntry item) { return _list.Contains(item); }
    
            public void CopyTo(DifferenceListEntry[] array, int arrayIndex) { _list.CopyTo(array, arrayIndex); }
    
            public int Count { get { return _list.Count; } }
    
            bool ICollection<DifferenceListEntry>.IsReadOnly { get { return true; } }
    
            bool ICollection<DifferenceListEntry>.Remove(DifferenceListEntry item) { throw new InvalidOperationException(); }
    
            #endregion
    
            #region IEnumerable<DifferenceListEntry> メンバ
    
            public IEnumerator<DifferenceListEntry> GetEnumerator() { return _list.GetEnumerator(); }
    
            #endregion
    
            #region IEnumerable メンバ
    
            IEnumerator IEnumerable.GetEnumerator() { return _list.GetEnumerator(); }
    
            #endregion
    
        }
    
        /// <summary>
        /// 変更方法を現します。
        /// </summary>
        public enum ChangeType {
            Unchanged = 0,
            Added = -1,
            Deleted = 1
        }
    
    }
    
記事No.49367 のレス /過去ログ83より / 関連記事表示
削除チェック/



<< 0 >>

パスワード/

- Child Tree -