zoukankan      html  css  js  c++  java
  • 一个模板类

    using System;

    namespace PublicLib
    {
        
    /// <summary>
        
    /// Text 的摘要说明。
        
    /// </summary>

        public class Template
        
    {
            
    public Template(string TplName)
            
    {
                 GetConfig( TplName);
    ReadTemplate( TplName);
                
            }

            
    private void  ReadTemplate(string TplName)
            
    {
                
            }

            
    private void  GetConfig(string TplName)
            
    {
                
            }


            
    private void  RepeatParse(string Name)
            
    {
                
            }

            
    private void Parse(string Name,string Value)
            
    {
                    
            }

            
    public string TemplateCotent
            
    {    
                
    get
                
    {
                    
    return TemplateCotent;
                }

                
    set
                
    {
                    TemplateCotent
    =value;
                }

            }
     
                
        }

    }

  • 相关阅读:
    Java中的流
    多种日志收集工具比较
    UML类图几种关系的总结
    从数组中找出第K大的数
    数组各种排序算法和复杂度分析
    时间复杂度和空间复杂度
    Java Classloader原理分析
    WebSocket
    TCP/IP详解--TCP连接中TIME_WAIT状态过多
    TCP协议
  • 原文地址:https://www.cnblogs.com/liugod/p/291052.html
Copyright © 2011-2022 走看看