Skip to content

Commit ba9224e

Browse files
Alvin SevilleAlvin Seville
authored andcommitted
problem fixed
1 parent ce2ef50 commit ba9224e

38 files changed

+42
-11
lines changed

NETMouse - .NET release/Actions/PrepareVersion.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
@echo off
21
title PrepareVersion
32
setlocal
43

@@ -69,7 +68,7 @@ if not exist "%csharpCompiler%" (
6968
exit 1
7069
)
7170

72-
for %%f in ("%csharpExamplesFolder%*.cs") do "%csharpCompiler%" -reference:"ABCNET.dll" -lib:"%csharpExamplesFolder%" "%%f"
71+
for %%f in ("%csharpExamplesFolder%*.cs") do "%csharpCompiler%" "-reference:ABCNET.dll" "-lib:%csharpExamplesFolder%\" "%%f"
7372

7473
echo Examples have been successfully recompiled.
7574

512 Bytes
Binary file not shown.

NETMouse - .NET release/Examples/C#/ABCNET.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NETMouse - .NET release/Examples/C#/Matrices_11.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int Max(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int max = int.MinValue;
1515
bool oddFound = false;
@@ -24,7 +24,7 @@ public static int Max(this int[,] matrix)
2424
}
2525

2626
if (!oddFound)
27-
throw new ArgumentException(nameof(matrix));
27+
throw new ArgumentException("matrix");
2828

2929
return max;
3030
}

NETMouse - .NET release/Examples/C#/Matrices_2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int[] Sum(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int[] result = new int[matrix.GetLength(0)];
1515
int rowsCount = matrix.GetLength(0);

NETMouse - .NET release/Examples/C#/Matrices_3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int Min(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int min = int.MaxValue;
1515
int rowsCount = matrix.GetLength(0);

NETMouse - .NET release/Examples/C#/Matrices_4.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static Tuple<int, int> Min(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int min = int.MaxValue;
1515
int minRow = 0;

NETMouse - .NET release/Examples/C#/Matrices_5.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int[] Sum(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int[] result = new int[matrix.GetLength(0)];
1515
int rowsCount = matrix.GetLength(0);

NETMouse - .NET release/Examples/C#/Matrices_6.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int[] Count(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int[] result = new int[matrix.GetLength(0)];
1515
int rowsCount = matrix.GetLength(0);

NETMouse - .NET release/Examples/C#/Matrices_8.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static class Program
99
public static int[] Count(this int[,] matrix)
1010
{
1111
if (matrix == null)
12-
throw new ArgumentNullException(nameof(matrix));
12+
throw new ArgumentNullException("matrix");
1313

1414
int[] result = new int[matrix.GetLength(1)];
1515
int rowsCount = matrix.GetLength(0);

0 commit comments

Comments
 (0)