This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespaceAdmin.NET.Plugin.HwPortal;
/// <summary>
/// 门户模块常量定义。
/// <para>
/// 【C# 语法知识点 - static class 静态类】
/// public static class HwPortalConstants
///
/// 静态类有以下特点:
/// 1. 不能实例化(不能 new)
/// 2. 所有成员必须是静态的
/// 3. 是密封的(不能被继承)
///
/// 对比 Java:
/// Java 没有静态类概念,通常用 final class + private 构造函数模拟:
/// public final class HwPortalConstants {
/// private HwPortalConstants() {} // 防止实例化
/// public static final String PRODUCT_INFO_CONFIG_MODAL = "...";