Console.Write

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

Hello, trying to make the transistion from VB.Net to C# - What is the
equivalent of the VB.Net Console.Write?

Thanks in advance for your assistance!!!!
 
Jim said:
Hello, trying to make the transistion from VB.Net to C# - What is the
equivalent of the VB.Net Console.Write?

Console.Write();

Save a small change in syntax, some idiosyncracies and the elimination
of more than a few clunky VB keywords, you'll find the languages are
largely the same thanks to the fact they're leveraging the same
underlying framework.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Hi Jim,

The System.Console.Write() method is part of the .NET Framework Base Class
Library (BCL) and doesn't belong to any language. So, in this case, you
would code a Console.Write("..."); call the same way in C#.

Joe
 
Thanks... I guess I was using lower case "c"onsole and when I went to the
documentation to look up "Console" I did not see any thing on that object.

Again...Thanks
 
Back
Top