An open API service indexing awesome lists of open source software.

https://github.com/ntdls/ntdls.embeddedresource

Simple utility to read and manage embedded resources (text files, images, etc.) in .NET applications.
https://github.com/ntdls/ntdls.embeddedresource

Last synced: 15 days ago
JSON representation

Simple utility to read and manage embedded resources (text files, images, etc.) in .NET applications.

Awesome Lists containing this project

README

          

# NTDLS.EmbeddedResource

📦 Be sure to check out the NuGet package: https://www.nuget.org/packages/NTDLS.EmbeddedResource

# Example usage:
Make sure the file in the project is marked as "Embedded Resource" in its properties.

```csharp
var formattedText = EmbeddedResourceReader.Format(@"TextFiles\TestResource.txt", ["World"]);

Console.WriteLine(formattedText);
```