Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#

ADB - Documentation Compiler for Managed Class Libraries

Rate me:
Please Sign up or sign in to vote.
4.60/5 (4 votes)
8 Mar 2009CPOL1 min read 30.7K   834   29  
ADB produces MSDN style documentation by reflecting and integrating XML Documentation Comments.
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码由工具生成。
//     运行库版本:2.0.50727.42
//
//     对此文件的更改可能会导致不正确的行为,并且如果
//     重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------

namespace Update.Properties {
    using System;
    
    
    /// <summary>
    ///   强类型资源类,用于查找本地化字符串等。
    /// </summary>
    // 此类是由 StronglyTypedResourceBuilder
    // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
    // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
    // (以 /str 作为命令选项),或重新生成 VS 项目。
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class Resources {
        
        private static global::System.Resources.ResourceManager resourceMan;
        
        private static global::System.Globalization.CultureInfo resourceCulture;
        
        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal Resources() {
        }
        
        /// <summary>
        ///   返回此类使用的缓存 ResourceManager 实例。
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if (object.ReferenceEquals(resourceMan, null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Update.Properties.Resources", typeof(Resources).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }
        
        /// <summary>
        ///   为使用此强类型资源类的所有资源查找
        ///   重写当前线程的 CurrentUICulture 属性。
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }
        
        /// <summary>
        ///   查找类似 错误 的本地化字符串。
        /// </summary>
        internal static string strError {
            get {
                return ResourceManager.GetString("strError", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 &quot;压缩文件|*.zip&quot; 的本地化字符串。
        /// </summary>
        internal static string strFilter {
            get {
                return ResourceManager.GetString("strFilter", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 提示 的本地化字符串。
        /// </summary>
        internal static string strTip {
            get {
                return ResourceManager.GetString("strTip", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 当前版本已经是最新版本 的本地化字符串。
        /// </summary>
        internal static string strTip1 {
            get {
                return ResourceManager.GetString("strTip1", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 检测到新版本,是否下载? 的本地化字符串。
        /// </summary>
        internal static string strTip2 {
            get {
                return ResourceManager.GetString("strTip2", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 更新已下载,更新请退出已启动的ADB! 的本地化字符串。
        /// </summary>
        internal static string strTip3 {
            get {
                return ResourceManager.GetString("strTip3", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 安装已取消,您可以将解压安装目录下的ADB_Uptade.zip并覆盖原安装文件手动更新 的本地化字符串。
        /// </summary>
        internal static string strTip4 {
            get {
                return ResourceManager.GetString("strTip4", resourceCulture);
            }
        }
        
        /// <summary>
        ///   查找类似 更新已安装,是否启动程序? 的本地化字符串。
        /// </summary>
        internal static string strTip5 {
            get {
                return ResourceManager.GetString("strTip5", resourceCulture);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions