Click here to Skip to main content
15,896,522 members
Articles / Desktop Programming / Windows Forms

Extract Images and Icons of .NET Resources

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
17 Nov 2011CPOL 57K   4.8K   46  
List and extract .NET resources
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ResourceResolver
{
	public enum ResourceType
	{
		String = 1,
		Image = 2,
		Icon = 3
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) www.crssoft.com
Turkey Turkey
I am a computer engineer, a .Net developer. I live in İstanbul. I work at CrsSoft, a software company.

Comments and Discussions