Files
agent-framework/dotnet/samples/GettingStarted/Workflows/SharedStates/Resources.cs
T
Chris 240edb00cd .NET Workflows - Update structure of samples (#645)
* Updated

* Typos

* Update readme fwiw
2025-09-08 23:16:29 +00:00

16 lines
370 B
C#

// Copyright (c) Microsoft. All rights reserved.
using System.IO;
namespace WorkflowSharedStatesSample;
/// <summary>
/// Resource helper to load resources.
/// </summary>
internal static class Resources
{
private const string ResourceFolder = "Resources";
public static string Read(string fileName) => File.ReadAllText($"{ResourceFolder}/{fileName}");
}