Multi dimensional arrays in c#

 
We know that array is the combination of the values of the similar data types. If we talk about the dimensions in the arrays, in C# programming Arrays can have one or more dimensions. An Array which has one dimension is called by one dimensional array and when array has more than one dimension called by multidimensional array. Continue reading “Multi dimensional arrays in c#”

How to resize windows form at runtime in .net

 
You can change the size of the windows form at run time in many ways. You can change both the height and the width of the form programmatically by Size property, or you can set the Height or Width properties individually. You can also change the size using the Windows Forms Designer.
Continue reading “How to resize windows form at runtime in .net”