If Not IsPostBack Then
Dim q=From f In System.Drawing.FontFamily.Families _
Select f.Name
ListBox1.DataSource = q
ListBox1.DataBind()
End If
I'm new to LinQ and I'm following a VB.Net tutorial so I don't know Linq in C#. Can anyone translate this to C# for me?