- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有兴趣在 IronPython 的 C# 程序中编写一些例程。我担心整合。我有一个简单的类:
public class candleStim
{
public virtual int Id { get; set; }
public virtual int candleNumber { get; set; }
public virtual DateTime date { get; set; }
public virtual decimal open { get; set; }
public virtual decimal high { get; set; }
public virtual decimal low { get; set; }
public virtual decimal close { get; set; }
public virtual List<EMA> EMAs { get; set; }
public virtual List<SMA> SMAs { get; set; }
public virtual string simulationID { get; set; }
}
用 IronPython 编写的方法能理解这个类吗?一个简单的字符串对象怎么样,它们在 C# 和 IronPython 中是否相同?如果没有,我将如何进行转换?谢谢!
最佳答案
您可以自己轻松地检查所有这些工作有多好。
我不确定您使用的是什么工具,但是如果您 setup IronPython和 IronPython Tools for VisualStudion , 你可以做很多实验。
下面的示例只是一些自动生成的 IronPython Winforms 项目代码,其中引用了您的类,该类构建为标准 ClassLibrary C# 项目。 (不过,您必须将构建的程序集复制到 IronPython 项目目录)。
我唯一不确定的是 EMA/SMA —— 如果您希望它们是从某些库导入的一些“标准”Python 类,或者只是您的一些自定义内容。
import clr
clr.AddReference('System.Drawing')
clr.AddReference('System.Windows.Forms')
### importing our assembly
clr.AddReference('ClassLibrary1ForPython')
from System.Drawing import *
from System.Windows.Forms import *
from ClassLibrary1ForPython import *
class MyForm(Form):
def __init__(self):
# Create child controls and initialize form
pass
### your class instantiating
classInstance = candleStim()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
form = MyForm()
### setting the window title from the value of a property of your class (standard string)
form.Text = classInstance.simulationID
Application.Run(form)
关于c# - Iron Python 如何与 C# 类一起玩(普通或漂亮)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19760279/
在通过REST Request Body方法发出搜索请求时,例如 GET /bank/_search { "query": { "match_all": {} }, "sort": [
有没有办法检测用户是否停止滑动?也许 bij 鼠标输入检查之类的。我尝试在 onSliderChange 事件中使用鼠标 isButton0Release 和 hasFocus 来检查用户是否停止滑动
(来源:google.com) 最近,我发现我的应用程序中显示的汉字相当难看。 我想我应该让它们“消除锯齿”。但是,我如何在 Java 中做到这一点? 仅供引用,我没有明确选择要在 GUI 应用程序中
我正在创建一个网站,根据某些条件(即是否登录、是否填写表格等),不同页面的外观可能会有很大差异。这使得需要在不同的时间输出不同的html block 。 但是,这样做会使我的 php 代码看起来很糟糕
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭10 年前。 Improve th
如果我有一个类包含例如几个将用向量填充的槽,那么问题通常会出现。如果我想让这个类的对象或多或少透明,我会为它实现 print-object。在这里我遇到了问题: 如果我在一行中打印所有内容,REPL
我有一个允许上传到我网站的文件扩展名列表。 我用 jQuery Validation plugin 检查它们. 如果他们选择了不受支持的扩展程序,我会显示一条错误消息。 看起来像 var msg =
在一个本身嵌套在一个或多个父数组/结构/union 中的数组/结构/union 中读取多个数字/字符串的最佳方法是什么? 没有临时变量的第一个例子: printf("%d %d\n", a[9][3]
我是 AngularJS 的新手。我目前在为我的观点编写漂亮的 url 时遇到问题。我已经设置了 $locationProvider.html5Mode(true);删除 #从地址栏中显示的网址。但是
我有一个带有 ElasticSearch 的自动完成 jquery 功能。输入第一个字母时出现以下错误。 跨源请求被阻止:同源策略不允许读取 http://localhost:9200/test12/
我是一名优秀的程序员,十分优秀!