All the same formatting

This commit is contained in:
Martijn van Dijk
2023-03-02 21:44:26 +01:00
parent c99052c726
commit e10fe3fb61
15 changed files with 788 additions and 951 deletions
+16 -24
View File
@@ -1,24 +1,16 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SampleLibrary
{
public static class Utils
{
/// <summary>
/// Utility method to get models from local folder rather than an absolute path
/// </summary>
/// <param name="filename"></param>
/// <returns></returns>
public static string GetTestModel(string filename)
{
var path = Path.Combine(Directory.GetCurrentDirectory(), "..", "..", "TestModels", filename);
return path;
}
}
}
using System.IO;
namespace SampleLibrary {
public static class Utils {
/// <summary>
/// Utility method to get models from local folder rather than an absolute path
/// </summary>
/// <param name="filename"></param>
/// <returns></returns>
public static string GetTestModel(string filename) {
var path = Path.Combine(Directory.GetCurrentDirectory(), "..", "..", "TestModels", filename);
return path;
}
}
}