PC Review


Reply
Thread Tools Rate Thread

Benchmark - VB.NET Vs VC++.NET

 
 
Mart
Guest
Posts: n/a
 
      11th Dec 2003
Hi,

Is there a benchmark, or anything that could help me to compare the
execution speed between VB.NET and VC++.NET ?

I plan to developt a SCADA application but I don't need very fast
reaction time such as x ms., 1 sec. would be enough.

So I taught at first that I would need VC++.NET to make an ActiveX
driver layer that the VB.NET application could use to get a connection
to the hardware process. But as I am reading my VB.NET Bible, I see
that it is much more powerfull that I taught at first. I learned that
it can do multi-threading, that it is a full OO language. So do I
really need VC++.NET?

Thanks you for your tips!

Mart

 
Reply With Quote
 
 
 
 
Cor
Guest
Posts: n/a
 
      12th Dec 2003
Hi Mart,

I think that the most important thing for you to decide is if you can make
your applications with managed code.

It is an intermidiate code that has to be processed by the framework (net
1.0 or net 1.1).

If that is possible you can start thinking about VB.Net if not you have to
keep it with C++.

I hope this helps something?

Cor
>
> Is there a benchmark, or anything that could help me to compare the
> execution speed between VB.NET and VC++.NET ?
>
> I plan to developt a SCADA application but I don't need very fast
> reaction time such as x ms., 1 sec. would be enough.
>
> So I taught at first that I would need VC++.NET to make an ActiveX
> driver layer that the VB.NET application could use to get a connection
> to the hardware process. But as I am reading my VB.NET Bible, I see
> that it is much more powerfull that I taught at first. I learned that
> it can do multi-threading, that it is a full OO language. So do I
> really need VC++.NET?
>



 
Reply With Quote
 
Mart
Guest
Posts: n/a
 
      12th Dec 2003
Hi Cor,

I didn't knew about managed code in VB.NET. This is interesting, where
can I read more about it?

Thank you

Mart

Cor wrote:
> Hi Mart,
>
> I think that the most important thing for you to decide is if you can make
> your applications with managed code.
>
> It is an intermidiate code that has to be processed by the framework (net
> 1.0 or net 1.1).
>
> If that is possible you can start thinking about VB.Net if not you have to
> keep it with C++.
>
> I hope this helps something?
>
> Cor
>
>>Is there a benchmark, or anything that could help me to compare the
>>execution speed between VB.NET and VC++.NET ?
>>
>>I plan to developt a SCADA application but I don't need very fast
>>reaction time such as x ms., 1 sec. would be enough.
>>
>>So I taught at first that I would need VC++.NET to make an ActiveX
>>driver layer that the VB.NET application could use to get a connection
>>to the hardware process. But as I am reading my VB.NET Bible, I see
>>that it is much more powerfull that I taught at first. I learned that
>>it can do multi-threading, that it is a full OO language. So do I
>>really need VC++.NET?
>>

>
>
>


 
Reply With Quote
 
CJ Taylor
Guest
Posts: n/a
 
      12th Dec 2003
Is it really fair to compare the speed of any .NET code?

After all, doesn't it all depend on the IDL? Which is where everything is
compiled down to anyways in .NET?

I think its important to remember that the CLR is the basis of everything,
and that is where the actual speed of execution comes from.

"Cor" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Mart,
>
> I think that the most important thing for you to decide is if you can make
> your applications with managed code.
>
> It is an intermidiate code that has to be processed by the framework (net
> 1.0 or net 1.1).
>
> If that is possible you can start thinking about VB.Net if not you have to
> keep it with C++.
>
> I hope this helps something?
>
> Cor
> >
> > Is there a benchmark, or anything that could help me to compare the
> > execution speed between VB.NET and VC++.NET ?
> >
> > I plan to developt a SCADA application but I don't need very fast
> > reaction time such as x ms., 1 sec. would be enough.
> >
> > So I taught at first that I would need VC++.NET to make an ActiveX
> > driver layer that the VB.NET application could use to get a connection
> > to the hardware process. But as I am reading my VB.NET Bible, I see
> > that it is much more powerfull that I taught at first. I learned that
> > it can do multi-threading, that it is a full OO language. So do I
> > really need VC++.NET?
> >

>
>



 
Reply With Quote
 
Cor
Guest
Posts: n/a
 
      12th Dec 2003
Hi Mart,

Maybe you can start here

http://msdn.microsoft.com/library/de...anagedcode.asp

> I didn't knew about managed code in VB.NET. This is interesting, where
> can I read more about it?
>
> Thank you
>
> Mart
>
> Cor wrote:
> > Hi Mart,
> >
> > I think that the most important thing for you to decide is if you can

make
> > your applications with managed code.
> >
> > It is an intermidiate code that has to be processed by the framework

(net
> > 1.0 or net 1.1).
> >
> > If that is possible you can start thinking about VB.Net if not you have

to
> > keep it with C++.
> >
> > I hope this helps something?
> >
> > Cor
> >
> >>Is there a benchmark, or anything that could help me to compare the
> >>execution speed between VB.NET and VC++.NET ?
> >>
> >>I plan to developt a SCADA application but I don't need very fast
> >>reaction time such as x ms., 1 sec. would be enough.
> >>
> >>So I taught at first that I would need VC++.NET to make an ActiveX
> >>driver layer that the VB.NET application could use to get a connection
> >>to the hardware process. But as I am reading my VB.NET Bible, I see
> >>that it is much more powerfull that I taught at first. I learned that
> >>it can do multi-threading, that it is a full OO language. So do I
> >>really need VC++.NET?
> >>

> >
> >
> >

>



 
Reply With Quote
 
Cor
Guest
Posts: n/a
 
      12th Dec 2003
Hi CJ,

I did not write this because of the speed, but because of the problem that
Mart has to fix.
Can he do it with managed code? If not, the speed is not important anymore.

Cor.

> Is it really fair to compare the speed of any .NET code?
>
> After all, doesn't it all depend on the IDL? Which is where everything is
> compiled down to anyways in .NET?
>
> I think its important to remember that the CLR is the basis of everything,
> and that is where the actual speed of execution comes from.



 
Reply With Quote
 
CJ Taylor
Guest
Posts: n/a
 
      12th Dec 2003
Hey Cor,

I know... I was just trying to stir some interesting stuff up today...
pretty boring over here...

=)

-CJ
"Cor" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi CJ,
>
> I did not write this because of the speed, but because of the problem that
> Mart has to fix.
> Can he do it with managed code? If not, the speed is not important

anymore.
>
> Cor.
>
> > Is it really fair to compare the speed of any .NET code?
> >
> > After all, doesn't it all depend on the IDL? Which is where everything

is
> > compiled down to anyways in .NET?
> >
> > I think its important to remember that the CLR is the basis of

everything,
> > and that is where the actual speed of execution comes from.

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Looking for a PC benchmark - Try this Overnight Computer Hardware 0 24th Sep 2008 11:29 AM
Benchmark Overnight ATI Video Cards 0 1st May 2008 09:50 PM
Re: benchmark kony Computer Hardware 4 12th Dec 2004 07:11 PM
Is this benchmark right? sTuFf ATI Video Cards 9 29th Aug 2004 02:36 AM
Benchmark HDD's Noozer Computer Hardware 5 23rd Aug 2004 02:47 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:48 AM.