The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
I seem to be running into a ''memory leak'' issue regarding the GridControl. My application creates and disposes lots of GridControls. When I run a .NET memory profiler, the Syncfusion classes are still in the managed heap and the memory usage for my application goes to 140MB+.
For example,
GridControl grid=null;
for(;;)
{
grid = new GridControl();
grid.Show();
this.Controls.Add( grid );
this.Controls.Remove( grid );
grid.Dispose();
grid = null;
}
ADAdministrator Syncfusion Team February 29, 2004 11:35 PM UTC
There appears to be a problem here. We are looking into it.
KOKyui OhFebruary 29, 2004 11:51 PM UTC
Looks like when adding the GridControl to the Controls collection, Syncfusion adds a hidden class called ''SizeBox''. When I remove this class from the Controls collections everything gets released from the managed heap.