Changes between Version 30 and Version 31 of CodeBestPractices


Ignore:
Timestamp:
2012-12-01 13:29:04 (11 years ago)
Author:
jeroens
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeBestPractices

    v30 v31  
    104104Here is a brief table how Visual Basic 6 constructs map to .NET: 
    105105 
    106 {| class="wikitable" 
    107 |- 
    108 ! scope="col"| !VisualBasic construct  
     106{|  
     107! !VisualBasic construct  
    109108! scope="col"| .NET alternative  
    110109|-  
    111 ! vbTab, etc  
    112 ! Convert.!ToChar(Keys.Tab), etc 
     110| vbTab, etc  
     111| Convert.!ToChar(Keys.Tab), etc 
    113112|- 
    114 ! vbNewline  
    115 ! Environment.!NewLine 
     113| vbNewline  
     114| Environment.!NewLine 
    116115|- 
    117 ! !InStr, Left, Mid  
    118 ! .NET [http://msdn.microsoft.com/en-US/library/system.string_methods%28v=vs.80%29.aspx String class]  
     116| !InStr, Left, Mid  
     117| .NET [http://msdn.microsoft.com/en-US/library/system.string_methods%28v=vs.80%29.aspx String class]  
    119118|- 
    120 ! MsgBox  
    121 ! See below, [#Notifications User Interface guidelines] 
     119| MsgBox  
     120| See below, [#Notifications User Interface guidelines] 
    122121|} 
    123122