473,383 Members | 1,868 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Another C# to VB.NET question

What is the VB.NET equivalent of a C# sealed class?
-sandor
Nov 21 '05 #1
6 1122
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))
--
"Sandor Pakh" <sa****@us-installations.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
What is the VB.NET equivalent of a C# sealed class?
-sandor

Nov 21 '05 #2
"Sandor Pakh" <sa****@us-installations.com> schrieb:
What is the VB.NET equivalent of a C# sealed class?


\\\
Public NotInheritable Class Foo
...
End Class
///

Related:

Visual Studio -- Keywords Compared in Different Languages
<URL:http://msdn.microsoft.com/library/en-us/vsintro7/html/vxoriLanguageEquivalentsKeywords.asp>

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #3
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
news:ea*************@TK2MSFTNGP09.phx.gbl...
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))
--
"Sandor Pakh" <sa****@us-installations.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
What is the VB.NET equivalent of a C# sealed class?
-sandor


Nov 21 '05 #4
Thanks again.

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:u$*************@TK2MSFTNGP09.phx.gbl...
| 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
| news:ea*************@TK2MSFTNGP09.phx.gbl...
| > 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))
| > --
| >
| >
| > "Sandor Pakh" <sa****@us-installations.com> wrote in message
| > news:%2****************@TK2MSFTNGP14.phx.gbl...
| >> What is the VB.NET equivalent of a C# sealed class?
| >> -sandor
| >>
| >>
| >
| >
|
|
Nov 21 '05 #5
Thank You.
-sandor

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:#$*************@TK2MSFTNGP09.phx.gbl...
| "Sandor Pakh" <sa****@us-installations.com> schrieb:
| > What is the VB.NET equivalent of a C# sealed class?
|
| \\\
| Public NotInheritable Class Foo
| ...
| End Class
| ///
|
| Related:
|
| Visual Studio -- Keywords Compared in Different Languages
|
<URL:http://msdn.microsoft.com/library/en...riLanguageEqui
valentsKeywords.asp>
|
| --
| Herfried K. Wagner [MVP]
| <URL:http://dotnet.mvps.org/>
|
Nov 21 '05 #6
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/de...quivalents.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

"Sandor Pakh" <sa****@us-installations.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
What is the VB.NET equivalent of a C# sealed class?
-sandor

Nov 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: fig000 | last post by:
Hi, I'm relatively new to Javascript so please bear with me on what might sound like silly questions. This is what I want to do: I'm working in classic asp (I have to for this project). I...
6
by: anon | last post by:
Post Forwarding question...... For this control below, <asp:Button runat="server" PostTargetUrl="page2.aspx" /> The Attribute: PostTargetUrl="page2.aspx" Is this PostTargetUrl Attribute...
2
by: terence.parker | last post by:
I am often faced with the dilemma of whether to use a JOIN query across three tables in order to grab a bunch of results - or whether to create another table to represent what I want. The latter is...
0
by: Sebastian Hiller | last post by:
Hello, i'm new to .Net (i'm using VB as language and i'm working in the code-behind mode) and i can't solve the following problem: I have a WebForm and want to Add a UserControl...
3
by: Brad | last post by:
I have another hopefully simple question. I am so used to writing VB .Net windows apps that there are some things in ASP .Net that just does not easily cross over. I know how to pass variables to...
27
by: Javier Martinez | last post by:
Hi I have asp application in a machine with a virtual directory referring a shared directory in another machine When I try to load any aspx page of my portal I get the following error: ...
17
by: Eric_Dexter | last post by:
def simplecsdtoorc(filename): file = open(filename,"r") alllines = file.read_until("</CsInstruments>") pattern1 = re.compile("</") orcfilename = filename + "orc" for line in alllines: if not...
24
by: David Mathog | last post by:
On a Solaris 8 system if a user "joe" logs in, for instance via ssh, cuserid() returns "joe". That's the expected behavior and so far so good. However if that user then does: % su - sally ...
13
by: shookim | last post by:
I don't care how one suggests I do it, but I've been searching for days on how to implement this concept. I'm trying to use some kind of grid control (doesn't have to be a grid control, whatever...
4
by: MichaelK | last post by:
Hello. I have all data already collected on the current page? I want to open another window with the form, fill the fields and submit that form. So basically the question is how can I fill all...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.