All Questions
3 questions
3
votes
2
answers
404
views
What is the rationale for making certain methods for data types static?
In C#, for instance, there are static methods for telling if a string is null or empty, finding an element in an array, clearing an array, etc. However there's an instance method for replacing ...
-1
votes
1
answer
92
views
Would I need a web framework if the app is running locally and not in the net?
I need to make an Employee Payroll application and the client specifically stated that the application will run on their computer locally and will not be hosted anywhere in the internet.
I can code ...
0
votes
4
answers
3k
views
Identifying user of a webapp
For a small webapp I want to be able to identify a user.
The issue is, if the user cheats in some manner, I want to be able
to forbid him the usage of my application.
I already have done extensive ...