View Single Post
Old 11-14-2012, 04:10 PM   PM User | #1
abell12
New Coder

 
Join Date: Mar 2012
Posts: 31
Thanks: 1
Thanked 1 Time in 1 Post
abell12 is an unknown quantity at this point
Why will this block not complie?

Code:
    public void memberRegister(String newName, String newId, int newPinNumber)
    {
        String name = newName;
        String id = newId;
        int pinNumber = newPinNumber;
        
        Member.welcomeMessage(String name, String id, String storeName);
    }
abell12 is offline   Reply With Quote