Tracer
Tracer
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
clion is still paid with 30d trial. If they change that to free for nc use then VS is gonna have some problems with users
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
yeah that was a big news with rider though I wont use it
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
right, clion is free for nc use Apparently it isnt..?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
its paid, so that will always be a huge difference between that and VS
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
you can select only what you use ¯\_(ツ)_/¯
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
why?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
do you know if maybe VS has some similar functionality for that?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
alr
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
so thats the value Im looking for
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
and the bytes is just the size of the object excluding the values its pointers point to?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
whats the diff between bytes and retained bytes?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
oh, thought its a part of Rider, nvm it then
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
thats JB Rider, right?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
in C++ I would just read the bytes directly and/or read the size with a debugger
struct Example {
int a;
std::vector<float> b;
double c;
std::string d;
int e;
};
struct Example {
int a;
std::vector<float> b;
double c;
std::string d;
int e;
};
When I have only the offset to e, I can easily get all members by just sizeof'ing everything
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
the pattern is the memory location, that + the size of the hashset would be sufficient
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
if 64bits
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
so the size would be roughly 32 bytes...?
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
thats what I need
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
something along those lines, yes
218 replies
CC#
Created by Tracer on 12/25/2024 in #help
Serialize HashSet into a binary file
I have a dump of memory of other process with HashSet<enum> there. I want to get the boundaries of the hashset (its surrounded by other members but thats out of the scope here). In order to do that I need to read the HashSet object from memory
218 replies