I've execute the instruction which locates there
I can get, execute and use .exe file as it shown there.
But when I trying debug this code
using System;
using System.Reflection;
using System.Resources;
namespace Example
{
public class Example
{
public static void Main()
{
ResourceManager rm = new ResourceManager("GreetingResources",
typeof(Example).Assembly);
Console.Write(rm.GetString("prompt"));
string name = Console.ReadLine();
Console.WriteLine(rm.GetString("greeting"), name);
Console.ReadLine();
}
}
}
with my GreetingResources.resources file, I get MissingManifestResourceException
.
I also choose "Embedded resource" option in GreetingResources.resources file properties, but it doesn't solve my issue.