-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm pretty new to C++/CLI and I am trying to convert a System::String to a System::Char array.
Here's what I have so far:
private: System::Void modeToolStripMenuItem_Click(System::Object^ sender, System::EventArgs^ e) {
Mode frmMode;
if(frmMode.ShowDialog() == System::Windows::Forms::DialogResult::OK){
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here is what I'm trying:
typedef cli::array<int> intarray;
int main(){
intarray ^ints = gcnew intarray { 0, 1, 2, 3 };
intarray::Reverse(ints); // C2825, C2039, C3149
return 0;
}
Compilation resulted in the following errors:
.\ints.cpp(46) : error C2825: 'intarray': must…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I had a working subversion server which used the passwd file which stores passwords in clear text. My requirements changed so that passwords now need to be encrypted. I did everything according to the book to use SASL, or so I believe, but now only the linux command line can authenticate. My OSX…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
We have two Coldfusion servers that have a huge performance difference running the exact same code on the exact same input data. The code in questions instantiates a large amount of CFCs (Coldfusion Components, which are similar to objects in OOP languages).
I compared the two servers by running…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi. I'm writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end() for each thread that exits after using it.
Debugging any given VB.Net project I can see at least…
>>> More