To jest aplikacja C # .NET 4.0:
Osadzam plik tekstowy jako zasób, a następnie próbuję wyświetlić go w oknie dialogowym:
var assembly = Assembly.GetExecutingAssembly();
var resourceName = "MyProj.Help.txt";
using (Stream stream = assembly.GetManifestResourceStream(resourceName))
{
using (StreamReader reader = new StreamReader(stream))
{
string result = reader.ReadToEnd();
System.Windows.Forms.MessageBox.Show(result, "MyProj", MessageBoxButtons.OK);
}
}
Rozwiązaniem jest MyProjSolution, a plikiem wykonywalnym jest MyProj.exe. Help.txt to zasób osadzony. Jednak strumień jest pusty. Próbowałem MyProjSolution.Help.txt i MyProjSolution.MyProj.Help.txt, ale wydaje się, że nic nie działa.