From aaeff900f603d0e2ff485288cbdf68e8a4cab1e5 Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Sat, 7 May 2022 20:56:08 +0000 Subject: [PATCH] docs: add comments to `L4.LD_24` --- L4/LD_24/Forma1.aspx.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/L4/LD_24/Forma1.aspx.cs b/L4/LD_24/Forma1.aspx.cs index 898b3f7..68ec6fb 100644 --- a/L4/LD_24/Forma1.aspx.cs +++ b/L4/LD_24/Forma1.aspx.cs @@ -16,6 +16,7 @@ namespace LD_24 protected void Page_Load(object sender, EventArgs e) { + // Generate initial data files if they don't exist string[] actorFiles = { "Actors1.txt", "Actors2.txt", "Actors3.txt" }; foreach (string name in actorFiles) { @@ -26,6 +27,7 @@ namespace LD_24 } } + // Read actors from folder try { actors = InOutUtils.ReadActorsDir(Server.MapPath("App_Data"));