473,465 Members | 1,773 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Passing an Object by Ref

I have a few objects that I've created, Contact, Address, AddressCollection
(inherits from CollectionBase), dtaContact, and dtaAddress. One of the
properties of the Contact object (Contact.Addresses) is a Type of
AddressCollection. When I want to add a new contact to my database I create a
new Address object for each address and a new AddressCollection object. I
then populate the Address objects and add them to the AddressCollection
(InnerList.Add(address)). Next I populate the Contact object properties
including the AddressCollection. Now I want to pass the Contact object by Ref
to the dtaContact.Insert() method so that I can use the output parameter of
my SP to populate the ContactID property and have that value reflected in my
contact object. This functionality works just fine. However within my
dtaContact.Insert() method I want to loop through the AddressCollection and
pass each Address object by Ref to the dtaAddress.Insert method. When I do
this I get the following error when I try to Rebuild...

error CS1605: Cannot pass 'contactAddress' as a ref or out argument because
it is read-only

Can anyone provide some insight as to why this may be happening?

Thanks,

Mike G.
Jul 21 '05 #1
6 2168
It appears that you have a property called: contactAddress that is marked
as ReadOnly.

"Mike Guerrieri" <Mike Gu*******@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
I have a few objects that I've created, Contact, Address, AddressCollection
(inherits from CollectionBase), dtaContact, and dtaAddress. One of the
properties of the Contact object (Contact.Addresses) is a Type of
AddressCollection. When I want to add a new contact to my database I
create a
new Address object for each address and a new AddressCollection object. I
then populate the Address objects and add them to the AddressCollection
(InnerList.Add(address)). Next I populate the Contact object properties
including the AddressCollection. Now I want to pass the Contact object by
Ref
to the dtaContact.Insert() method so that I can use the output parameter
of
my SP to populate the ContactID property and have that value reflected in
my
contact object. This functionality works just fine. However within my
dtaContact.Insert() method I want to loop through the AddressCollection
and
pass each Address object by Ref to the dtaAddress.Insert method. When I do
this I get the following error when I try to Rebuild...

error CS1605: Cannot pass 'contactAddress' as a ref or out argument
because
it is read-only

Can anyone provide some insight as to why this may be happening?

Thanks,

Mike G.

Jul 21 '05 #2
Thanks for the fast reply Scott. The contactAddress is not marked ReadOnly,
here is the section where it is created...

dtaContactAddress contactAddressData = new dtaContactAddress();
foreach (ContactAddress contactAddress in contact.AddressCollection)
{
contactAddress.ContactId = contactID;
contactAddressData.Insert(ref contactAddress);
}

Could it be that objects in a collection are implicitly ReadOnly?

- Mike G.
"Scott M." wrote:
It appears that you have a property called: contactAddress that is marked
as ReadOnly.

"Mike Guerrieri" <Mike Gu*******@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
I have a few objects that I've created, Contact, Address, AddressCollection
(inherits from CollectionBase), dtaContact, and dtaAddress. One of the
properties of the Contact object (Contact.Addresses) is a Type of
AddressCollection. When I want to add a new contact to my database I
create a
new Address object for each address and a new AddressCollection object. I
then populate the Address objects and add them to the AddressCollection
(InnerList.Add(address)). Next I populate the Contact object properties
including the AddressCollection. Now I want to pass the Contact object by
Ref
to the dtaContact.Insert() method so that I can use the output parameter
of
my SP to populate the ContactID property and have that value reflected in
my
contact object. This functionality works just fine. However within my
dtaContact.Insert() method I want to loop through the AddressCollection
and
pass each Address object by Ref to the dtaAddress.Insert method. When I do
this I get the following error when I try to Rebuild...

error CS1605: Cannot pass 'contactAddress' as a ref or out argument
because
it is read-only

Can anyone provide some insight as to why this may be happening?

Thanks,

Mike G.


Jul 21 '05 #3
Mike Guerrieri <Mi***********@discussions.microsoft.com> wrote:
Thanks for the fast reply Scott. The contactAddress is not marked ReadOnly,
here is the section where it is created...

dtaContactAddress contactAddressData = new dtaContactAddress();
foreach (ContactAddress contactAddress in contact.AddressCollection)
{
contactAddress.ContactId = contactID;
contactAddressData.Insert(ref contactAddress);
}

Could it be that objects in a collection are implicitly ReadOnly?


Objects themselves aren't readonly. However, the *variable*
contactAddress is readonly - the variable used in a foreach is always
implicitly readonly.

It doesn't look to me like you need to pass contactAddress by reference
though - that would just allow Insert to change the value of
contactAddress, which itself is a reference.

I *suspect* you're a bit confused about reference types vs value types
and parameter passing.
See http://www.pobox.com/~skeet/csharp/parameters.html

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #4
Thank you Jon, I didn't realize that the variable used in a foreach is always
implicitly readonly.

I don't believe that I'm confused by reference and value types. For each
Address object in my collection, when the data from an Address object is
inserted into the database an AddressID will be returned in an output
parameter. I want to populate the AddressID property of the Address object
with that ID.

Thank you very much for your help.

~ Mike G.
"Jon Skeet [C# MVP]" wrote:
Mike Guerrieri <Mi***********@discussions.microsoft.com> wrote:
Thanks for the fast reply Scott. The contactAddress is not marked ReadOnly,
here is the section where it is created...

dtaContactAddress contactAddressData = new dtaContactAddress();
foreach (ContactAddress contactAddress in contact.AddressCollection)
{
contactAddress.ContactId = contactID;
contactAddressData.Insert(ref contactAddress);
}

Could it be that objects in a collection are implicitly ReadOnly?


Objects themselves aren't readonly. However, the *variable*
contactAddress is readonly - the variable used in a foreach is always
implicitly readonly.

It doesn't look to me like you need to pass contactAddress by reference
though - that would just allow Insert to change the value of
contactAddress, which itself is a reference.

I *suspect* you're a bit confused about reference types vs value types
and parameter passing.
See http://www.pobox.com/~skeet/csharp/parameters.html

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #5
This is not a problem. Even objects passed byval are updatable (you just
allows to update or not *this* pointer).

Patrice

--

"Mike Guerrieri" <Mi***********@discussions.microsoft.com> a écrit dans le
message de news:D0**********************************@microsof t.com...
Thank you Jon, I didn't realize that the variable used in a foreach is always implicitly readonly.

I don't believe that I'm confused by reference and value types. For each
Address object in my collection, when the data from an Address object is
inserted into the database an AddressID will be returned in an output
parameter. I want to populate the AddressID property of the Address object
with that ID.

Thank you very much for your help.

~ Mike G.
"Jon Skeet [C# MVP]" wrote:
Mike Guerrieri <Mi***********@discussions.microsoft.com> wrote:
Thanks for the fast reply Scott. The contactAddress is not marked ReadOnly, here is the section where it is created...

dtaContactAddress contactAddressData = new dtaContactAddress();
foreach (ContactAddress contactAddress in contact.AddressCollection)
{
contactAddress.ContactId = contactID;
contactAddressData.Insert(ref contactAddress);
}

Could it be that objects in a collection are implicitly ReadOnly?


Objects themselves aren't readonly. However, the *variable*
contactAddress is readonly - the variable used in a foreach is always
implicitly readonly.

It doesn't look to me like you need to pass contactAddress by reference
though - that would just allow Insert to change the value of
contactAddress, which itself is a reference.

I *suspect* you're a bit confused about reference types vs value types
and parameter passing.
See http://www.pobox.com/~skeet/csharp/parameters.html

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Jul 21 '05 #6
Mike Guerrieri <Mi***********@discussions.microsoft.com> wrote:
Thank you Jon, I didn't realize that the variable used in a foreach is always
implicitly readonly.

I don't believe that I'm confused by reference and value types. For each
Address object in my collection, when the data from an Address object is
inserted into the database an AddressID will be returned in an output
parameter. I want to populate the AddressID property of the Address object
with that ID.


And you don't need to pass anything by reference in order to do that.
Pass the reference to an Address object (passing that reference by
value) and update it in your method.

Put it this way: passing a variable by reference when you then make no
use of the potentially changed value of the variable should always
raise alarm bells - there's no (semantic) point in passing the variable
by reference in that case.

See the article I referred to in my last post.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #7

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

Similar topics

3
by: domeceo | last post by:
can anyone tell me why I cannot pass values in a setTimeout function whenever I use this function it says "menu is undefined" after th alert. function imgOff(menu, num) { if (document.images) {...
58
by: jr | last post by:
Sorry for this very dumb question, but I've clearly got a long way to go! Can someone please help me pass an array into a function. Here's a starting point. void TheMainFunc() { // Body of...
8
by: Dennis Myrén | last post by:
I have these tiny classes, implementing an interface through which their method Render ( CosWriter writer ) ; is called. Given a specific context, there are potentially a lot of such objects,...
17
by: LP | last post by:
Hello, Here's the scenario: Object A opens a Sql Db connection to execute number of SqlCommands. Then it needs to pass this connection to a constructor of object B which in turn executes more...
6
by: Scott Zabolotzky | last post by:
I'm trying to pass a custom object back and forth between forms. This custom object is pulled into the app using an external reference to an assembly DLL that was given to me by a co-worker. A...
11
by: John Pass | last post by:
Hi, In the attached example, I do understand that the references are not changed if an array is passed by Val. What I do not understand is the result of line 99 (If one can find this by line...
6
by: MSDNAndi | last post by:
Hi, I get the following warning: "Possibly incorrect assignment to local 'oLockObject' which is the argument to a using or lock statement. The Dispose call or unlocking will happen on the...
12
by: Andrew Bullock | last post by:
Hi, I have two classes, A and B, B takes an A as an argument in its constructor: A a1 = new A(); B b = new B(a1);
7
by: TS | last post by:
I was under the assumption that if you pass an object as a param to a method and inside that method this object is changed, the object will stay changed when returned from the method because the...
4
by: Deckarep | last post by:
Hello fellow C# programmers, This question is more about general practice and convention so here goes: I got into a discussion with a co-worker who insisted that as a general practice all...
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
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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,...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.