อัพโค้ดเดิมที่ทำโดย VB2008 เป็น VB2013 โค้ด Function ด้านล่างไม่ทำงานครับ ไม่ได้มีการแก้ไขอะไร
พอดีเป็นโปรแกรมเก่าที่ผมต้องนำมาปรับปรุง
ลองทดสอบเหหมือนกันแล้ว ถ้าเอา 2008 มันเข้า Function แต่ 2013 มันจะ End Function เลย (มีความจำเป็นต้องอัพเวอร์ชั่นครับ)
Code (VB.NET)
Public Function CommentSection(ByVal SectionName As String) As Boolean
'Comments a given section and all of its keys
Dim ThisSection As Section = GetSection(SectionName)
If ThisSection Is Nothing Then Return False
ThisSection.IsCommented = True
Dim myEnumerator As System.Collections.IEnumerator = ThisSection.GetEnumerator()
While myEnumerator.MoveNext()
myEnumerator.Current.IsCommented = True
End While
Return True
End Function