Possible Duplicate:
Naming convention for private fields
I read on msdn about C# naming conventions but they don't talk about naming private fields vs parameters.
public void SetAnimation(int framesX, int framesY)
{
framesX = framesX; // the first one is private class member
framesY = framesY;
}
I must name private field differently than a parameter. I can't do camel case for both. What do you suggest?