You have to cast it to ClientValues type.
var cSharpScript = (ClientValues)gObject2.GetComponent("Clientvalues");
or
var cSharpScript = gObject2.GetComponent("Clientvalues") as ClientValues;
First one causes runtime error if cast fails and the second one returns null if it fails. Important difference. But both should do the trick.