1 Star 0 Fork 2

TK-7/oxyplot

forked from anysharp/oxyplot 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ExampleAttribute.cs 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Oystein Bjorke 提交于 2014-10-04 05:43 +08:00 . Add TagsAttribute to example library
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ExampleAttribute.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace ExampleLibrary
{
using System;
/// <summary>
/// Specifies the title for an example.
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
public class ExampleAttribute : Attribute
{
/// <summary>
/// Initializes a new instance of the <see cref="ExampleAttribute"/> class.
/// </summary>
/// <param name="title">The title.</param>
public ExampleAttribute(string title = null)
{
this.Title = title;
}
/// <summary>
/// Gets the title.
/// </summary>
/// <value>
/// The title.
/// </value>
public string Title { get; private set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tk-7/oxyplot.git
git@gitee.com:tk-7/oxyplot.git
tk-7
oxyplot
oxyplot
master

搜索帮助