How to make a seperator line in C# and VB.NET Administrator July 7, 2014 1 Comment 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: A Seperator line in .NET