Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
edmond-chow authored Jan 7, 2024
1 parent 8d7d8c3 commit 0458282
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion C#/Complex.rar/Complex/Complex/Cayley Dickson Algebra.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Linq;
internal class Number
{
private static bool IsNumber(long Number)
Expand Down Expand Up @@ -253,6 +254,6 @@ public static Number NumberCross(Number Union, Number Value)
}
public double[] ToArray()
{
return Data;
return Data.ToArray();
}
}

0 comments on commit 0458282

Please sign in to comment.