View Single Post
  #327  
Old 11-12-2007, 12:04 AM
00Snitch 00Snitch is offline
Senior Member
 
Join Date: Sep 2004
Posts: 2,260
Default Re: Don\'t come home until u is sobern! (NC Thread)

so, i am actually working today...

are there any vs2005 gurus out there? i've got an automatically generated file (from xsd) which has all its properties in this format:

[ QUOTE ]

public string Property1
{
get
{
return this.property1;
}
set
{
this.property1 = value;
}
}


[/ QUOTE ]

and i want them to look like this:
[ QUOTE ]

public string Property1
{
get { return this.property1; }
set { this.property1 = value; }
}


[/ QUOTE ]

Is there a formatting option that will do this for me?
Reply With Quote