How do I calculate minimum system requirements?

前端 未结 4 1250
醉梦人生
醉梦人生 2021-02-20 12:34

For the apps I\'m writing in Visual C#?

相关标签:
4条回答
  • 2021-02-20 12:47

    I would suggest setting up a VM with just your software installed and then just alter the ram and processor specs on it and retest.

    It will take a little while but this would be a great way to do determine it and see what areas that you application could be enhanced.

    0 讨论(0)
  • 2021-02-20 12:51

    Testing.

    (No, really, that's all there is to it.)

    0 讨论(0)
  • 2021-02-20 12:59

    Well, the minimum requirements for your application written in C# is probably going to be the .Net framework, which has a nice page here listing the requirements for the various versions.

    How usable will your app be using the recommended minimum? You'll have to find some hardware (or use a virtual machine see comments) and try it out.

    0 讨论(0)
  • 2021-02-20 13:06

    It depends from the kind of application you are writing. For example a 3d videogame could require DirectX capable hardware. If you are writing an office app (wordprocessors and so on) every modern computer with .NET framework is enough :)

    0 讨论(0)
提交回复
热议问题