출처 : MSDN
' Generate a sequence of integers from 1 to 10
' and project their squares.
Dim squares As IEnumerable(Of Integer) = _
Enumerable.Range(1, 10).Select(Function(x) x * x)
Dim output As New System.Text.StringBuilder
For Each num As Integer In squares
output.AppendLine(num)
Next
' Display the output.
MsgBox(output.ToString())
' This code produces the following output:
'
' 1
' 4
' 9
' 16
' 25
' 36
' 49
' 64
' 81
' 100
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
비베 로그남기기 (0) | 2013.07.06 |
---|---|
VB.NET MetaWeblog API 참조 (0) | 2013.07.06 |
문자배열에서 특정문자의 갯수 추출 (0) | 2013.07.04 |
모듈(콘솔)에서 윈폼 띄우기 (0) | 2013.07.02 |
VB.NET>Treenode (0) | 2013.07.01 |