main
1using System.IO;
2using System.Reflection;
3
4namespace solidware.financials.windows.ui.views.icons
5{
6 public class IconMarker
7 {
8 private static readonly Assembly _assembly = Assembly.GetExecutingAssembly();
9
10 public static Stream GetImage(string path)
11 {
12 return _assembly.GetManifestResourceStream(typeof (IconMarker), path);
13 }
14 }
15}