Posts by Luiz R.P. Santiago • 21 points
4 posts
-
1
votes1
answer115
viewsA: Image file encryption with c#
From what I understand the image should be part of a file with other data and this file, in turn, will be encrypted. So, I’m not sure what your file structure looks like, but you can convert the…
-
0
votes1
answer155
viewsA: C++ overhead in method header
The Primitivetype parameter may be causing this overhead, as a copy of values is made for each method call. In C++ there is a "cat jump" to avoid overhead that a type per value can cause when passed…
-
1
votes2
answers1375
viewsA: How to use DTO in ASP.NET CORE + DDD
A more reasonable option would be to "map" properties of a DTO with properties of a Viewmodel, untying any dependency from one to the other. There are tools that can help you with this, such as the…
-
0
votes1
answer138
viewsA: Take two values from Arduino and display in C#
I believe the problem is here on this line: char recep = data+"_"+data2; You are using the type "char" when you should actually use the type "string".