Initial Commit

This commit is contained in:
kdeng00
2021-02-15 20:28:10 -05:00
commit 53e54c4998
3 changed files with 71 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System.Collections.Generic;
using System.Linq;
namespace MyTestLib
{
// Test class with a single method
public class MyTestClass
{
// Returns the sum of all the values in the list
#region Methods
public double SumListValues(List<double> values)
{
return values.Sum();
}
#endregion
}
}