zoukankan      html  css  js  c++  java
  • 今天写的代码,可惜没有用上,但想想可能以后还能用上吧。

    是关于自定义数据的简单实现,你可以这样使用。
    //define ConnectionString property.
    CustomProperty<string> ConnectionStringProperty =
        
    new CustomProperty<string>("ConnectionStringProperty");
    //create customData
    CustomData data = new CustomData();
    data.SetValue
    <string>(ConnectionStringProperty, "test");
    string v = data.GetValue<string>(ConnectionStringProperty);
    这个代码主要还是演示如何使用DebuggerDisplayDebuggerTypeProxy功能。
    详细的代码如下:
    CustomProperty

    CustomData
  • 相关阅读:
    【工具篇】利用DBExportDoc V1.0 For MySQL自动生成数据库表结构文档(转
    PHP Client for Mysql Binlog
    MySQL的binlog日志恢复(转)
    Linux 普通进程 后台进程 守护进程(转)
    实战:MySQL Sending data导致查询很慢的问题详细分析(转)
    mysql索引无效且sending data耗时巨大原因分析
    阿里云-DRDS(转)
    MySQL查看SQL语句执行效率(转)
    nginx php-fpm 输出php错误日志(转)
    Golang指针基本介绍及使用案例
  • 原文地址:https://www.cnblogs.com/tansm/p/1099151.html
Copyright © 2011-2022 走看看