简体   繁体   中英

Translate this VB.NET LINQ statement to C#, having trouble

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#. How can this be translated to C#?

var q = from f in System.Drawing.FontFamily.Families select f.Name;

I'm surprised none of the popular conversion sites support LINQ syntax (as far as I can tell)

if(!IsPostBack)
{
    var q = from f in System.Drawing.FontFamily.Families select f.Name
    ListBox1.DataSource = q;
    ListBox1.DataBind()
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM