.NET: Resgen Tutorial
问题 First off I have RFM and RFM and I have tried to follow a few sites but I cannot grasp the concept of the Resource Manager. Can someone please explain to me how to generate a resource manager similar to that of the VS IDE. For example if I compile with VBC from the commandline I can see all my resource files. vbc /t:exe myfile.vb /res:res1 /res:res2 Dim a as Assembly = Assembly.GetExecutingAssembly() For Each i as string in a.GetManifestResourceNames() Console.writeline(i) Next i res1 res2 If