CloneSet182


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6410.961class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16120
src/NHibernate/Util/ArrayHelper.cs
26128
src/NHibernate/Util/ArrayHelper.cs
36136
src/NHibernate/Util/ArrayHelper.cs
46144
src/NHibernate/Util/ArrayHelper.cs
Clone Instance
1
Line Count
6
Source Line
120
Source File
src/NHibernate/Util/ArrayHelper.cs

                public static string[] Join(string[] x, string[] y)
                {
                        string[] result = new string[x.Length + y.Length];
                        Array.Copy(x, 0, result, 0, x.Length);
                        Array.Copy(y, 0, result, x.Length, y.Length);
                        return result;
                }



Clone Instance
2
Line Count
6
Source Line
128
Source File
src/NHibernate/Util/ArrayHelper.cs

                public static DbType[] Join(DbType[] x, DbType[] y)
                {
                        DbType[] result = new DbType[x.Length + y.Length];
                        Array.Copy(x, 0, result, 0, x.Length);
                        Array.Copy(y, 0, result, x.Length, y.Length);
                        return result;
                }



Clone Instance
3
Line Count
6
Source Line
136
Source File
src/NHibernate/Util/ArrayHelper.cs

                public static SqlType[] Join(SqlType[] x, SqlType[] y)
                {
                        SqlType[] result = new SqlType[x.Length + y.Length];
                        Array.Copy(x, 0, result, 0, x.Length);
                        Array.Copy(y, 0, result, x.Length, y.Length);
                        return result;
                }



Clone Instance
4
Line Count
6
Source Line
144
Source File
src/NHibernate/Util/ArrayHelper.cs

                public static object[] Join(object[] x, object[] y)
                {
                        object[] result = new object[x.Length + y.Length];
                        Array.Copy(x, 0, result, 0, x.Length);
                        Array.Copy(y, 0, result, x.Length, y.Length);
                        return result;
                }



Clone AbstractionParameter Count: 1Parameter Bindings

public static [[#variable54a84aa0]][] Join( [[#variable54a84aa0]][] x, [[#variable54a84aa0]][] y)
{
    [[#variable54a84aa0]][] result = new [[#variable54a84aa0]][x.Length + y.Length];
   Array.Copy(x, 0, result, 0, x.Length);
   Array.Copy(y, 0, result, x.Length, y.Length);
   return result;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#54a84aa0]]
string 
12[[#54a84aa0]]
SqlType 
13[[#54a84aa0]]
object 
14[[#54a84aa0]]
DbType