Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread franklin gray
bject: Re: [DOTNET] Best Practice for Passing Arguments I agree XML!!! - Original Message - From: Sean Greer (SBI-Chico) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 5:20 PM Subject: Re: [DOTNET] Best Practice for Passing Arguments > How about

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread Murphy, James
lto:[EMAIL PROTECTED]] > Sent: Saturday, June 01, 2002 6:44 PM > To: [EMAIL PROTECTED] > Subject: Re: [DOTNET] Best Practice for Passing Arguments > > > I agree XML!!! > > > - Original Message - > From: Sean Greer (SBI-Chico) <[EMAIL PROTECTED]> > To

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-03 Thread Bryan Batchelder
ic to your object (custom sorting, etc). --b Bryan Batchelder eBusiness Consultant ConnectWise, Inc. 813-935-7100 x 425 > -Original Message- > From: Stephen Patten [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 31, 2002 5:55 PM > To: [EMAIL PROTECTED] > Subject: [

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-02 Thread Dustin Wish with NCA Communications
I agree XML!!! - Original Message - From: Sean Greer (SBI-Chico) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 5:20 PM Subject: Re: [DOTNET] Best Practice for Passing Arguments > How about binding the controls to a DataSet and then pass the

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-01 Thread Ed Stegman
I assume you are asking about the general condition where you are defining a method that needs to have more than 4 or so arguments passed to it, so I'll approach it that way. I'm not a fan of passing arrays for something like that. Here's why: 1. You lose type safety. Your example is a rare occ

Re: [DOTNET] Best Practice for Passing Arguments

2002-05-31 Thread Sean Greer (SBI-Chico)
. My $.02 Seang -Original Message- From: Stephen Patten [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 2:55 PM To: [EMAIL PROTECTED] Subject: [DOTNET] Best Practice for Passing Arguments Hi All, Just wondering if there is a better way to pass arguments around than the way I am

Re: [DOTNET] Best Practice for Passing Arguments

2002-05-31 Thread franklin gray
how about XML? -Original Message- From: Stephen Patten [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 4:55 PM To: [EMAIL PROTECTED] Subject: [DOTNET] Best Practice for Passing Arguments Hi All, Just wondering if there is a better way to pass arguments around than the way I am

[DOTNET] Best Practice for Passing Arguments

2002-05-31 Thread Stephen Patten
Hi All, Just wondering if there is a better way to pass arguments around than the way I am right now(code posted at end of messsage). This one happens to be all strings so I guess a Array or ArrayList might suffice, but what if the values are of different types? Any help would be appreciated. Th