ifinancialsample.cs
来自「利用人工智能算法对财务数据进行分析」· CS 代码 · 共 19 行
CS
19 行
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FinanceAI.AI;
namespace FinanceAI.Data.Samples
{
interface IFinancialSample : ISample
{
// Ticker of the company that the sample refers to
string Ticker { get; }
// Date of the sample
DateTime Date { get; }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?