473,395 Members | 1,762 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,395 software developers and data experts.

Is everything an object?

In VB .NET everything is supposed to be an object. Say I have a report
title hard coded in a method. When a method is called, is the returned
title an object or a string?

Thanks,
Brett
Nov 21 '05 #1
5 1188
"Brett" <no@spam.com> schrieb:
In VB .NET everything is supposed to be an object. Say I have a report
title hard coded in a method. When a method is called, is the returned
title an object or a string?


It's a string object.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #2

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
"Brett" <no@spam.com> schrieb:
In VB .NET everything is supposed to be an object. Say I have a report
title hard coded in a method. When a method is called, is the returned
title an object or a string?


It's a string object.


What exactly does that mean? What is the difference between a string and a
string object?

The string returned has no properties, methods and cannot be instantiated.
Why would it be considered an object?

Thanks,
Brett
Nov 21 '05 #3
"Brett" <no@spam.com> schrieb:
In VB .NET everything is supposed to be an object. Say I have a report
title hard coded in a method. When a method is called, is the returned
title an object or a string?


It's a string object.


What exactly does that mean? What is the difference between a string and
a string object?

The string returned has no properties, methods and cannot be instantiated.
Why would it be considered an object?


The string returned by a method that returns a string actually has methods,
and 'String' inherits from 'Object', which is the common base class of all
types (notice that this does not apply to interfaces because interfaces
cannot be instantiated).

\\\
Dim s As String = Foo(...)
MsgBox(s.ToLower())
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #4
Did you not notice such methods as "Split", "EndsWith and "StartsWith"?

Everything in .NET is an object. Even basic types such as integers and
singles are derived from Object. This is why they have the .ToString method
for example.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"Brett" <no@spam.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
"Brett" <no@spam.com> schrieb:
In VB .NET everything is supposed to be an object. Say I have a report
title hard coded in a method. When a method is called, is the returned
title an object or a string?


It's a string object.


What exactly does that mean? What is the difference between a string and
a string object?

The string returned has no properties, methods and cannot be instantiated.
Why would it be considered an object?

Thanks,
Brett

Nov 21 '05 #5
Brett,

In addition to the others, you can use a "default" return type for every
object

Cor
Nov 21 '05 #6

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

Similar topics

20
by: xeys_00 | last post by:
I posted a article earlier pertaining programming for my boss. Now I am gonna ask a question about programming for myself. I just finished my first C++ Class. Next semester is a class on...
16
by: LP | last post by:
Hello, I am trying to use .NET with Excel. I installed Office 2003 and selected ..NET programming suport option, so it installed all those PIA, as MS sugests. But I can not find a way to destroy...
161
by: KraftDiner | last post by:
I was under the assumption that everything in python was a refrence... so if I code this: lst = for i in lst: if i==2: i = 4 print lst I though the contents of lst would be modified.....
5
by: Martin Drautzburg | last post by:
Hello all, I've seen various attempts to add distributed computing capabilities on top of an existing language. For a true distributed system I would expect it to be possible to instantiate...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.