I have a C# winform app. It handles some sound effects.
I was wondering whether I should make them embedded resources or put them in folders in the app directory.
I don't want the user of my app to mess with them. That's why I don't wanna put them in folders, but also, there's a problem I think. Their size in total is about 150 Migs, so if I'm gonna make them Embedded, will that size effect the performance of my App?
If so, will compressing them in ZIP files really help?