Posts by Metalus • 198 points
6 posts
-
1
votes2
answers189
viewsA: Byte Array x Stream
On the MSDN website, the definition for the Stream class Provides a generic way to see a sequence of bytes. https://msdn.microsoft.com/pt-br/library/system.io.stream%28v=vs.110%29.aspx Analyzing…
-
2
votes1
answer1576
viewsA: Running methods through configurable keyboard shortcuts
There are two possible cases, use whatever you find most convenient to your project. Focused The first is the Form only catch Keys if it is focused, if it is minimized it will not catch. This case…
-
8
votes2
answers228
viewsQ: Data compression. Issue for Criminal Period 2012, CESPE/Unb
Hello, I have searched in several places answer to this question, but to date I did not find. The question is to be judged on Right or Wrong. Question Consider a file composed of a large number of…
-
4
votes2
answers1074
viewsA: Is it efficient to check file modifications by Hash?
Hash basically works to confirm the integrity of a data sequence. There are several algorithms for HASH. Collision, different files and Hash alike It happens, usually with large files, rarely with…
-
0
votes2
answers830
viewsA: How to allocate program memory and storage before running my application in Wince?
I don’t know much about Windows CE, but if you need more memory, use virtual memory. http://msdn.microsoft.com/en-us/library/dd997372%28v=vs.110%29.aspx If using . NET ready imports does not work,…
-
3
votes1
answer917
viewsA: Object-Oriented Programming
I’ll leave the link to a video that I highly recommend. It has C# in the title, but it doesn’t go into language detail, it just explains how the POO works that goes for all languages that use this…