Changes between Version 29 and Version 30 of CodeBestPractices


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

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeBestPractices

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