Seasons.NET

ちょっとした技術ブログです

Entries from 2006-11-20 to 1 day

マニフェストリソースの読み込みではまる

1 // イメージ読み込み 2 Assembly asm = this.GetType().Assembly; 3 ArrayList images = new ArrayList(); 4 string[] imageNames = asm.GetManifestResourceNames(); 5 foreach (string name in imageNames) 6 { 7 Stream stream = asm.GetManifestResour…