.NET Samples - Create 03-workflows learning path step (#4102)

This commit is contained in:
Chris
2026-02-19 13:45:25 -08:00
committed by GitHub
parent 160cc635c1
commit eeb8644f3c
128 changed files with 444 additions and 252 deletions
@@ -0,0 +1,13 @@
// Copyright (c) Microsoft. All rights reserved.
namespace WorkflowSwitchCaseSample;
/// <summary>
/// Resource helper to load resources.
/// </summary>
internal static class Resources
{
private const string ResourceFolder = "Resources";
public static string Read(string fileName) => File.ReadAllText(Path.Combine(AppContext.BaseDirectory, ResourceFolder, fileName));
}