From 748899d7bf26ff97deb390f9bf8d52d76aad6781 Mon Sep 17 00:00:00 2001 From: AJ Date: Thu, 5 Mar 2020 07:45:22 -0500 Subject: [PATCH] Made Program class public so it can be used in other projects --- EtchBendLines/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EtchBendLines/Program.cs b/EtchBendLines/Program.cs index 8647fd8..1aee6f2 100644 --- a/EtchBendLines/Program.cs +++ b/EtchBendLines/Program.cs @@ -9,7 +9,7 @@ using System.Text.RegularExpressions; namespace EtchBendLines { - class Program + public class Program { const double ETCH_LENGTH = 1.0; @@ -45,7 +45,7 @@ namespace EtchBendLines Console.ReadKey(); } - static void AddEtchLines(string filePath) + public static void AddEtchLines(string filePath) { Console.WriteLine(filePath);