예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MatrixHashSet{T}"/> class.
 /// </summary>
 /// <param name="MatrixHashSet">The matrix list.</param>
 /// <param name="keyCaseSensitive">if set to <c>true</c> [key case sensitive].</param>
 public MatrixHashSet(MatrixHashSet <T> MatrixHashSet, bool keyCaseSensitive) : base(MatrixHashSet, keyCaseSensitive ? StringComparer.Ordinal : StringComparer.OrdinalIgnoreCase)
 {
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MatrixHashSet{T}" /> class.
 /// </summary>
 /// <param name="MatrixHashSet">The matrix list.</param>
 public MatrixHashSet(MatrixHashSet <T> MatrixHashSet) : base(MatrixHashSet)
 {
 }