I understand that there is probably no empirical difference between "string" and "String" but it still seems odd to me that this interface:
List<Platypus> GetPlatypus(String duckbillName, String pwd, String pondNum);
...when implemented in a class via right-clicking the interface name and selecting "Implement Interface" results in the slightly different:
public List<Platypus> GetPlatypus(string duckbillName, string pwd, string pondNum)
I realize there's probably no real diff between "string" and "String," but still I would expect the interface type of string to be reproduced in the
implemented class. Is it this way because it doesn't matter which type is used, and "string" is simply the default, or...???