B
Brett Romero
.....that is the question.
Any who, I have an application that only a handful of people will being
using. One of the features allows them to retrieve of a listing of
people into a datagrid. I'd like to make the method that does this
static. Once the data is retreived it is munipulated locally in a
dataview. They won't be updating it. That occurs in another place.
Would making these retreival methods static cause any problems? I
don't have a need for instances. However, will the method being static
cause the 2nd person to see results retreived by the 1st person? I
don't want any crossing over of data. I know instances will build a
wall between each user. I'm just not sure if users will end up sharing
data via the static method.
Thanks,
Brett
Any who, I have an application that only a handful of people will being
using. One of the features allows them to retrieve of a listing of
people into a datagrid. I'd like to make the method that does this
static. Once the data is retreived it is munipulated locally in a
dataview. They won't be updating it. That occurs in another place.
Would making these retreival methods static cause any problems? I
don't have a need for instances. However, will the method being static
cause the 2nd person to see results retreived by the 1st person? I
don't want any crossing over of data. I know instances will build a
wall between each user. I'm just not sure if users will end up sharing
data via the static method.
Thanks,
Brett