zoukankan      html  css  js  c++  java
  • 获取CodeSmith的版本号

    private CodesmithVersion GetCodesmithVersion()
    {
        
    try
        
    {
            
    string version = typeof(CodeTemplate).Assembly.GetName().Version.ToString();
            
    if(version != null)
            
    {
                
    if (version.IndexOf("3.2">= 0)
                    
    return CodesmithVersion.Codesmith32;
                
    else if (version.IndexOf("3.1">=0)
                    
    return CodesmithVersion.Codesmith31;
                
    else if (version.IndexOf("3.0">=0)
                    
    return CodesmithVersion.Codesmith30;
                
    else if (version.IndexOf("2.6">= 0)
                    
    return CodesmithVersion.Codesmith26;
            }

        }

        
    catch
        
    {
            
    //could not discover version info.    
        }

        
        
    return CodesmithVersion.Unknown;
    }
  • 相关阅读:
    ios风场
    ios avplayer 视频播放器
    iOS 微信支付
    ios 支付宝
    IOS 归档
    ios 友盟统计
    iOS OC部分 NSString
    ios 程序员
    Ios 一个很好用的图片选择器
    mac系统U盘装机 一个被系统坑过的路人
  • 原文地址:https://www.cnblogs.com/fjchenq/p/525285.html
Copyright © 2011-2022 走看看