コード例 #1
0
ファイル: Program.cs プロジェクト: androdev4u/XLParser
		public void AddFunction(Function function)
		{
			function.Parent = this;
			Functions[function.Name] = function;
			FunctionList.Add(function);
			
			if (function.Name == "Go")
			{
				EntryPoint = function;
			}
		}
コード例 #2
0
ファイル: Program.cs プロジェクト: androdev4u/XLParser
		public Program()
		{
			Functions = new Dictionary<string, Function>();
			FunctionList = new List<Function>();
			EntryPoint = null;
		}