⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parentchild.cs

📁 英语句子自然语言处理统计分析例子 Statistical parsing of English sentences Shows how to generate parse trees for
💻 CS
字号:
using System;

namespace Netron.Lithium
{
	/// <summary>
	/// Utility class to speed up the deserialization of connections
	/// </summary>
	public struct ParentChild
	{
		/// <summary>
		/// Default ctor
		/// </summary>
		/// <param name="child"></param>
		/// <param name="parent"></param>
		public ParentChild( ShapeBase child, string parent)
		{
			this.Parent = parent;
			this.ChildShape = child;
			//this.ParentShape = null;
			//this.ChildShape = null;
		}
		/// <summary>
		/// Gets or sets the parent in this relation
		/// </summary>
		public string Parent;		
		/// <summary>
		/// Gets or sets the child in this relation
		/// </summary>
		public ShapeBase ChildShape;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -