Skip to content

Commit 19c216e

Browse files
committed
ArrayHelper.cs: Function documentation.
1 parent 19bed0a commit 19c216e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/NHibernate/Util/ArrayHelper.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,12 @@ public static string ToString(object[] array)
8787
return sb.ToString();
8888
}
8989

90-
// NH-specific
90+
91+
/// <summary>
92+
/// Append all elements in the 'from' list to the 'to' list.
93+
/// </summary>
94+
/// <param name="to"></param>
95+
/// <param name="from"></param>
9196
public static void AddAll(IList to, IList from)
9297
{
9398
System.Action addNull = null;

0 commit comments

Comments
 (0)