Search Results

2
votes
2answers
313 views

Is Int32^ i = gcnew Int32() allocated on managed heap?

Basically I would like to know the difference between Int32^ i = gcnew Int32(); and Int32* i2 = new Int32(); I have written the follo …
0
votes

Is Int32^ i = gcnew Int32() allocated on managed heap?

I have got the answer. gcnew will allocate the object on managed heap, even the type is a value type. Therefore, Int32^ i = gcnew Int32() will allocate the newly created object on managed h …
1
vote

.Net Maximized Screen Ignores Taskbar

Set the form border to None before making it maximized. This code will work in a single monitor: private void Form1_Load(object sender, EventArgs e) { this.FormBorderSty …