mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
240edb00cd
* Updated * Typos * Update readme fwiw
16 lines
370 B
C#
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}");
|
|
}
|