为什么类类型在方法调用中具有数组符号

时间:2016-12-16 22:52:17

标签: c#

我有一个返回某些值的方法,其类型为AppPints(),如下所示

  public AppPints[] GeByLatLong(int scale)
        {
            return GeByLatLong(scale);
        }

但是,请您告诉我为什么它在方法定义中有[]符号?为什么不呢

  public AppPints GeByLatLong(int scale)
        {
            return GeByLatLong(scale);
        }

1 个答案:

答案 0 :(得分:1)

您的方法返回的数组为AppPints