将以往的代码复制到代码库
This commit is contained in:
12
Future.Platform/Instruction/Loop/Break.cs
Normal file
12
Future.Platform/Instruction/Loop/Break.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
internal class Break
|
||||
{
|
||||
}
|
||||
}
|
||||
12
Future.Platform/Instruction/Loop/Continue.cs
Normal file
12
Future.Platform/Instruction/Loop/Continue.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
internal class Continue
|
||||
{
|
||||
}
|
||||
}
|
||||
13
Future.Platform/Instruction/Loop/For.cs
Normal file
13
Future.Platform/Instruction/Loop/For.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
public class For //: LoopLogicalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
13
Future.Platform/Instruction/Loop/Foreach.cs
Normal file
13
Future.Platform/Instruction/Loop/Foreach.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
public class Foreach //: LoopLogicalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
13
Future.Platform/Instruction/Loop/Repeat.cs
Normal file
13
Future.Platform/Instruction/Loop/Repeat.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
public class Repeat //: LoopLogicalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
15
Future.Platform/Instruction/Loop/Seed.cs
Normal file
15
Future.Platform/Instruction/Loop/Seed.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
/// <summary>
|
||||
/// 移动游标:专门用于移动For循环的迭代器游标
|
||||
/// </summary>
|
||||
public class Seed
|
||||
{
|
||||
}
|
||||
}
|
||||
13
Future.Platform/Instruction/Loop/While.cs
Normal file
13
Future.Platform/Instruction/Loop/While.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
public class While// : LoopLogicalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user