Update README.md

This commit is contained in:
Namhyeon Go 2025-12-08 10:39:04 +09:00 committed by GitHub
parent f24375797c
commit cfc7dbf144
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,9 +42,9 @@ static Program() {
private static void InitializeAssemblyLoader()
{
/*
// if use the Embedded Resource
// Example for Embedded Resource:
var asm = Assembly.GetExecutingAssembly();
using (var stream = asm.GetManifestResourceStream("MyApp.Resources.Catswords.Phantomizer.dll.gz"))
using (var stream = asm.GetManifestResourceStream(typeof(Program).Namespace + ".Resources.Catswords.Phantomizer.dll.gz"))
{
// decompress and load...
}