Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.7K
~2K People Reached
Favorite Tags
Member Avatar for tcon

consider the following classes (similar to the ones i am working with): [CODE] namespace Project { public class Person { public Person() { } private string name; public string Name { get { return name; } set { name = value; } } private List<Pet> myPets; public List<Pet> MyPets { …

Member Avatar for Garr
0
1K
Member Avatar for metalla_nz

Hi all, Im developing a small app that stores information in a database. When I first released, I tried to make sure my DB was future-proofed against any changes. However i'm about to release a new version that requires a change to the DB schema. Currently my terrible way of …

Member Avatar for Garr
0
311