oms
oms

Reputation: 441

Can folder structure affect Windows Phone app performance?

Windows Phone 7.5 app.

I am thinking to restructure my app like creating separate nested folders in Visual Studio for better management. e.g. enter image description here

Will this kind of file structure affect the performance of the app?

Upvotes: 0

Views: 240

Answers (1)

Alastair Pitts
Alastair Pitts

Reputation: 19601

If you are referring to content files (such as sound or images), then I can't think of any reason this would cause performance issues.

In terms of code, then it will have NO performance issues as the code is compiled down into the DLL's and has no concept of folder structure.

Upvotes: 5

Related Questions