S
Simon
Hi,
Does anyone know of a code converter that take code like this:
public Name
{
get
{
return name;
}
}
and turns it it to this:
public Name{
get{
return name;
}
}
Notice how the braces arent put onto another line. (Whats the point? To make
your work look bigger?)
If anyone know of something that could go through a file and alter the
layout, that would be a big help
Thanks All
Simon
Does anyone know of a code converter that take code like this:
public Name
{
get
{
return name;
}
}
and turns it it to this:
public Name{
get{
return name;
}
}
Notice how the braces arent put onto another line. (Whats the point? To make
your work look bigger?)
If anyone know of something that could go through a file and alter the
layout, that would be a big help
Thanks All
Simon