The complete program's several thousand lines split up among different source files. I'm never sure what to do when I need help with those; I know I should post as complete a program as possible,...
I have an array of char representing pixels in a bitmap, which I want to modify. I don't think I can just iterate over the array and pass chars into a function individually, because the function...
I have a std::vector of short ints that I need to write to a specific location in a binary file (without using .NET code). To that end, I wrote up this code:
That could be my problem. What's the purpose of the tag, then? MSDN says it could be used to refer to the structure type in code later, but why can't you just use the name of the type?
Thanks! It's building, though with a few errors I'll have to sort out. Can I use Visual Studio to export it as a dll file? Searches only seem to describe how to do it with Visual Studio C++, not...
I've modified the source code for a .dll, but I'm not sure how to recompile it. I just opened one of the source code .cs files with Notepad and made a few changes. I think if I can load it in...
If by anything you mean code for reading it, I was trying to think of how to go about it when a friend suggested I use ReadLine to put each line into a string array, then for every property I could...