Another C# to VB.NET question

  • Thread starter Thread starter Sandor Pakh
  • Start date Start date
NotInheritable Public Class terry


End Class

--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
 
Sorry

Public NotInheritable Class terry



End Class


--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
 
Thanks again.

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
| Sorry
|
| Public NotInheritable Class terry
|
|
|
| End Class
|
|
| --
| OHM ( Terry Burns ) * Use the following to email me *
|
| Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
| For i As Int32 = 0 To ch.Length - 1
| ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
| Next
| Process.Start("mailto:" & New String(ch))
| --
|
|
| "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in
message
| | > NotInheritable Public Class terry
| >
| >
| > End Class
| >
| > --
| > OHM ( Terry Burns ) * Use the following to email me *
| >
| > Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
| > For i As Int32 = 0 To ch.Length - 1
| > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
| > Next
| > Process.Start("mailto:" & New String(ch))
| > --
| >
| >
| > | >> What is the VB.NET equivalent of a C# sealed class?
| >> -sandor
| >>
| >>
| >
| >
|
|
 
Sandor,
In addition to the other comments, the following page in MSDN provides the
language equivalents, such as keywords, within common programming languages.

http://msdn.microsoft.com/library/d...us/vsintro7/html/vxgrfLanguageEquivalents.asp

In the index its "Development Tools and Languages - Visual Studio .NET -
Product Documentation - Developing with Visual Studio - Reference - Language
References - Language Equivalents"

Hope this helps
Jay
 
Back
Top