I couldn't find any best practice guide line or question about this.
public void method(int primitiveVar)
{
}
vs
public void method(CustomObject objectVar)
{
// am I slower or do I generate any problem at all?
}
Is there any performance improvement by using one over the other by the time you call the method?
Thanks