在研究微软start kit的BlogEngine.Net,发现有俩个XmlBlogProvider类,但我查找,却只能找到一个
setting.csnamespace BlogEngine.Core.Providers
{
    /// <summary>
    /// A storage provider for BlogEngine that uses XML files.
    /// <res>
    /// To build another provider, you can just copy and modify
    /// this one. Then add it to the web.config's BlogEngine section.
    /// </res>
    /// </summary>
    public partial class XmlBlogProvider : BlogProvider
    {
}}Categories.csnamespace BlogEngine.Core.Providers
{
  /// <summary>
  /// A storage provider for BlogEngine that uses XML files.
  /// <res>
  /// To build another provider, you can just copy and modify
  /// this one. Then add it to the web.config's BlogEngine section.
  /// </res>
  /// </summary>
  public partial class XmlBlogProvider : BlogProvider
  {
}
}俩个类的命名空间,类名都一样,为什么不报错?
发现查找的时候只能找到Categories.cs里的XmlBlogProvider
请各位指教