To make a seperator line in C# and VB.NET you can use the following snippet.

Sample C# / VB.NET

label1.Height = 2;
label1.AutoSize = false;
label1.BorderStyle = BorderStyle.Fixed3D;

Result:

SeperatorLine_NET
A Seperator line in .NET

One thought on “How to make a seperator line in C# and VB.NET”

Leave a Reply