T
Tom P.
What would the difference be between the following two:
public class Foo : IList<string>
{
....
}
public class Foo : List<string>
{
....
}
Thanks,
Tom P.
public class Foo : IList<string>
{
....
}
public class Foo : List<string>
{
....
}
Thanks,
Tom P.