GetManifestResourceNames
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
namespace Manifest
{
class Program
{
static void Main(string[] args)
{
foreach (string name in Manifest.GetResourceList())
{
Console.WriteLine( "Name = {0}" , name);
}
}
}
class Manifest
{
public static string[] GetResourceList()
{
Assembly asm = Assembly.GetExecutingAssembly();
return asm.GetManifestResourceNames();
}
}
}






Hello!!
There are currently no comments for this snippet.