You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NumSharp.Core/Exceptions/NumSharpException.cs
-9Lines changed: 0 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
usingSystem;
2
-
usingSystem.Runtime.Serialization;
3
2
4
3
namespaceNumSharp
5
4
{
@@ -11,14 +10,6 @@ public class NumSharpException : Exception, INumSharpException
11
10
publicNumSharpException()
12
11
{}
13
12
14
-
/// <summary>Initializes a new instance of the <see cref="T:System.Exception"></see> class with serialized data.</summary>
15
-
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> that holds the serialized object data about the exception being thrown.</param>
16
-
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"></see> that contains contextual information about the source or destination.</param>
17
-
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info">info</paramref> parameter is null.</exception>
18
-
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"></see> is zero (0).</exception>
Copy file name to clipboardExpand all lines: src/NumSharp.Core/RandomSampling/Randomizer.cs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,9 @@ namespace NumSharp
5
5
{
6
6
/// <summary>
7
7
/// Represents a pseudo-random number generator, which is a device that produces a sequence of numbers that meet certain statistical requirements for randomness.<br></br>
8
-
/// Equivalent of <see cref="System.Random"/> but with a <see cref="SerializableAttribute"/>.
8
+
/// Equivalent of <see cref="System.Random"/>.
9
9
/// </summary>
10
10
/// <remarks>Copied and modified from https://referencesource.microsoft.com/#mscorlib/system/random.cs</remarks>
0 commit comments