Re: Need help with bracket counter for project
That's probably because there's a starting bracket ({) in the beginning of the file that doesn't have an ending bracket. Remove it and try again.
EDIT: That's part of the test file? In the original file, remove the brackets that are enclosing the entire file. If I'm right your file is formatted like this:
Code:
using this;
using that;
{
class1
{
}
class2
{
}
... //more classes
}
This will make my code put it all in one file. Make sure your file is formatted like this:
Code:
using this;
using that;
class1
{
}
class2
{
}
... //more classes
Last edited by foamy; June 17th, 2010 at 08:50 AM.
It's not a bug, it's a feature!