在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → paxscriptnet2.7(价值187美金)C#代码解释执行器

paxscriptnet2.7(价值187美金)C#代码解释执行器

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.61M
  • 下载次数:13
  • 浏览次数:65
  • 发布时间:2023-04-24
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 相关标签: script NET sc 代码 C#

实例介绍

【实例简介】paxscriptnet2.7(价值187美金)C#代码解释执行器
The component allows you to embed paxScript.NET interpreter into your WinForms, Mobile or ASP.NET application so you can customize and extend the application without having to recompile it. ...

【实例截图】

from clipboard

【核心代码】
文件清单
├── Demos
│   ├── CSharp
│   │   ├── CallMethodApp
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── CallMethod.csproj
│   │   │   ├── CallMethod.sln
│   │   │   ├── Form1.cs
│   │   │   └── Form1.resx
│   │   ├── DebugApp
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── DebugApp.csproj
│   │   │   ├── DebugApp.sln
│   │   │   ├── WinForm.cs
│   │   │   └── WinForm.resx
│   │   ├── HelloApp
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Hello.csproj
│   │   │   └── Hello.sln
│   │   └── SamplePrograms
│   │       ├── Ch10
│   │       │   ├── AccountBalanceTraversal.cs
│   │       │   ├── AverageAgeCalculator.cs
│   │       │   ├── BalancesIncorrectSentinel.cs
│   │       │   ├── BankSimulation.cs
│   │       │   ├── ConsoleArguments.cs
│   │       │   ├── ElevatorArray.cs
│   │       │   ├── MaxSales.cs
│   │       │   ├── ReturnMaxSalesArray.cs
│   │       │   ├── SimpleAccountBalances.cs
│   │       │   ├── SumOfArguments.cs
│   │       │   └── ValueEquality.cs
│   │       ├── Ch11
│   │       │   ├── BinarySearcher.cs
│   │       │   ├── BubbleSort.cs
│   │       │   ├── DotNETSearcher.cs
│   │       │   ├── ElevatorRequestTracker.cs
│   │       │   ├── FindTheIslandGame.cs
│   │       │   ├── JaggedElevatorRequests.cs
│   │       │   ├── SequentialSearcher.cs
│   │       │   └── SortingCompetition.cs
│   │       ├── Ch12
│   │       │   ├── DistanceCalculator.cs
│   │       │   ├── DynamicBankSimulation.cs
│   │       │   ├── MethodMatcher.cs
│   │       │   ├── MethodMatcherTwo.cs
│   │       │   ├── SolarSystem.cs
│   │       │   ├── SumCalculator.cs
│   │       │   ├── Swapper.cs
│   │       │   ├── VirtualBookshop.cs
│   │       │   └── VirtualBookshopTwo.cs
│   │       ├── Ch13
│   │       │   ├── AccountsReclaiming.cs
│   │       │   ├── FileAccessSimulator.cs
│   │       │   ├── GCAnalyzer.cs
│   │       │   ├── OpeningNewBankAccounts.cs
│   │       │   └── PermanentAccountNumber.cs
│   │       ├── Ch14
│   │       │   ├── AdvancedBirthsList.cs
│   │       │   ├── BicyclingWithAccessorMethods.cs
│   │       │   ├── BicyclingWithProperties.cs
│   │       │   ├── BirthsList.cs
│   │       │   ├── ConvertingUserDefinedTypes.cs
│   │       │   ├── CropForecaster.cs
│   │       │   ├── ExplicitConversionTester.cs
│   │       │   ├── ImplicitConversionTester.cs
│   │       │   ├── TimeSpanNoOverloading.cs
│   │       │   └── TimeSpanWithOverloading.cs
│   │       ├── Ch16
│   │       │   ├── CallingOverriddenMethod.cs
│   │       │   ├── DerivedClassConstructors.cs
│   │       │   ├── MyFirstGUI.cs
│   │       │   ├── OverridingMoveForward.cs
│   │       │   ├── OverridingOverloading.cs
│   │       │   ├── SeasonalAdjustment.cs
│   │       │   ├── SimpleRacingCar.cs
│   │       │   └── ThreeInheritanceLevels.cs
│   │       ├── Ch17
│   │       │   ├── AbstractMoveForward.cs
│   │       │   ├── ComparableTimeSpans.cs
│   │       │   ├── DownCastingRectangles.cs
│   │       │   ├── DrawingEngine.cs
│   │       │   ├── GenericBubbleSort.cs
│   │       │   ├── MethodHidingTest.cs
│   │       │   ├── ObjectOverrideTest.cs
│   │       │   ├── ShapesTester.cs
│   │       │   ├── SpaceShuttle.cs
│   │       │   └── SystemObjectTest.cs
│   │       ├── Ch18
│   │       │   ├── SimpleTimeSpanStruct.cs
│   │       │   ├── TimeSpanMethod.cs
│   │       │   ├── TimeSpanStruct.cs
│   │       │   └── UnboxingTest.cs
│   │       ├── Ch19
│   │       │   ├── CaughtInOtherFunction.cs
│   │       │   ├── CustomException.cs
│   │       │   ├── LogException.cs
│   │       │   ├── NestingTryBlocks.cs
│   │       │   ├── SimpleTryCatch.cs
│   │       │   ├── TestFinally.cs
│   │       │   └── UncaughtException.cs
│   │       ├── Ch2
│   │       │   └── Shakespeare.cs
│   │       ├── Ch20
│   │       │   ├── Calculator.cs
│   │       │   ├── CarGameEvents.cs
│   │       │   ├── MulticastTester.cs
│   │       │   └── RocketCalculator.cs
│   │       ├── Ch21
│   │       │   ├── Apollo13.cs
│   │       │   ├── CarTesting.cs
│   │       │   ├── RacingCar.cs
│   │       │   └── Train.cs
│   │       ├── Ch22
│   │       │   ├── ByteWritingReading.cs
│   │       │   └── TextInOut.cs
│   │       ├── Ch23
│   │       │   ├── Factorial.cs
│   │       │   ├── IterativeFactorial.cs
│   │       │   ├── MethodCallDemo.cs
│   │       │   ├── RecursiveBinarySearch.cs
│   │       │   └── SimpleRecursion.cs
│   │       ├── Ch3
│   │       │   └── Hello.cs
│   │       ├── Ch4
│   │       │   └── SimpleCalculator.cs
│   │       ├── Ch5
│   │       │   └── SimpleElevatorSimulation.cs
│   │       ├── Ch6
│   │       │   ├── BliposClock.cs
│   │       │   ├── Compatibility.cs
│   │       │   ├── ConstantMass.cs
│   │       │   ├── DifferentMagnitudes.cs
│   │       │   ├── MassCalculator.cs
│   │       │   ├── NonEquality.cs
│   │       │   ├── Overflow.cs
│   │       │   ├── OverflowingSubExpression.cs
│   │       │   ├── ReferenceTest.cs
│   │       │   ├── TravelingFullCheck.cs
│   │       │   └── TravelingPartlyChecked.cs
│   │       ├── Ch7
│   │       │   ├── CharacterArithmetic.cs
│   │       │   ├── DayCounter.cs
│   │       │   ├── EnumDayCounter.cs
│   │       │   ├── Library.cs
│   │       │   ├── MetadataAccessor.cs
│   │       │   ├── StringMaker.cs
│   │       │   ├── StringSorter.cs
│   │       │   ├── TextAnalyzer.cs
│   │       │   └── WordExtractor.cs
│   │       ├── Ch8
│   │       │   ├── BalanceAssessment.cs
│   │       │   ├── BankAccount.cs
│   │       │   ├── CharacterCounter.cs
│   │       │   ├── ChooseAction.cs
│   │       │   ├── CompactBalanceAssessment.cs
│   │       │   ├── DaysInMonth.cs
│   │       │   ├── DiscountOrNot.cs
│   │       │   ├── DishwasherMultibranch.cs
│   │       │   ├── DishwasherSwitch.cs
│   │       │   ├── IceCreamManufacturer.cs
│   │       │   ├── MultibranchBalanceAssessment.cs
│   │       │   └── PreMultibranch.cs
│   │       ├── Ch9
│   │       │   ├── AlphabetGame.cs
│   │       │   ├── AreaCalculatorImproved.cs
│   │       │   ├── AreaCalculatorUgly.cs
│   │       │   ├── Counting.cs
│   │       │   ├── GuessTwoLetters.cs
│   │       │   ├── OneThird.cs
│   │       │   ├── PlayItAgain.cs
│   │       │   ├── StarsOneDimension.cs
│   │       │   ├── StarsTwoDimensions.cs
│   │       │   └── TransferLetters.cs
│   │       ├── QuickTests
│   │       │   ├── test_Arrays.cs
│   │       │   ├── test_Delegates.cs
│   │       │   ├── test_Events.cs
│   │       │   ├── test_ExplicitConversion.cs
│   │       │   ├── test_ImplicitConversion.cs
│   │       │   ├── test_Interfaces.cs
│   │       │   ├── test_Literals.cs
│   │       │   ├── test_MethodOverloading.cs
│   │       │   ├── test_MultiErrors.cs
│   │       │   ├── test_OperatorOverloading.cs
│   │       │   ├── test_Params.cs
│   │       │   ├── test_Preprocessing.cs
│   │       │   ├── test_Strings.cs
│   │       │   ├── test_Structs.cs
│   │       │   ├── test_UsingAlias.cs
│   │       │   ├── test_Warnings.cs
│   │       │   └── test_WinForms.cs
│   │       └── Readme.txt
│   ├── Delphi
│   │   ├── CallMethodApp
│   │   │   ├── CallMethodApp.bdsproj
│   │   │   ├── CallMethodApp.dpr
│   │   │   ├── CallMethodApp.res
│   │   │   ├── script.cs
│   │   │   ├── WinForm1.pas
│   │   │   ├── WinForm1.resx
│   │   │   └── WinForm1.TWinForm1.resources
│   │   ├── DebugApp
│   │   │   ├── DebugAp.bdsproj
│   │   │   ├── DebugAp.dpr
│   │   │   ├── DebugAp.res
│   │   │   ├── script.cs
│   │   │   ├── WinForm1.pas
│   │   │   ├── WinForm1.resx
│   │   │   └── WinForm1.TWinForm2.resources
│   │   └── HelloApp
│   │       ├── HelloApp.bdsproj
│   │       ├── HelloApp.dpr
│   │       ├── HelloApp.res
│   │       ├── WinForm1.pas
│   │       ├── WinForm1.resx
│   │       └── WinForm1.TWinForm1.resources
│   └── VB.NET
│       ├── ASP.NET
│       │   ├── PAXDemos.zip
│       │   └── readme.txt
│       ├── EventHandling
│       │   ├── AssemblyInfo.vb
│       │   ├── Form1.resx
│       │   ├── Form1.vb
│       │   ├── WindowsApplication1.sln
│       │   └── WindowsApplication1.vbproj
│       ├── Hello
│       │   ├── AssemblyInfo.vb
│       │   ├── Form1.resx
│       │   ├── Form1.vb
│       │   ├── WindowsApplication1.sln
│       │   └── WindowsApplication1.vbproj
│       ├── VB_Samples
│       │   ├── AbstractClass.vb
│       │   ├── AddHandlerExample.vb
│       │   ├── ArrayListExample.vb
│       │   ├── ArrayWithUpperAndLowerBounds.vb
│       │   ├── BiggyLinkedList.vb
│       │   ├── CentralizedEventHandlingExample.vb
│       │   ├── DegreeConverter.vb
│       │   ├── DelegateExample.vb
│       │   ├── DelegateServer.vb
│       │   ├── DelegateSortExample.vb
│       │   ├── DirectoryInfoExample.vb
│       │   ├── EmbeddedObjectWithClone.vb
│       │   ├── EmployeeTest.vb
│       │   ├── EventHandling.vb
│       │   ├── GCD.vb
│       │   ├── GetTypeExample.vb
│       │   ├── GOTOExample.vb
│       │   ├── HashTableExample.vb
│       │   ├── InheritanceExample1.vb
│       │   ├── InterfaceExample1.vb
│       │   ├── LinkedListExample.vb
│       │   ├── MDIExample1.vb
│       │   ├── MultiCastExample.vb
│       │   ├── PassByValueProblems.vb
│       │   ├── PolyMorphismAtWork.vb
│       │   ├── ProtectedPitfalls.vb
│       │   ├── readme
│       │   ├── ReflectionExample.vb
│       │   ├── Shadowing.vb
│       │   ├── SharedDataExample.vb
│       │   ├── StringBuilderComparison.vb
│       │   ├── StringMemberDemo.vb
│       │   ├── StringsAreImmutable.vb
│       │   └── VersioningWithParseItExample.vb
│       └── VB_Tester
│           ├── AssemblyInfo.vb
│           ├── Form1.resx
│           ├── Form1.vb
│           ├── WindowsApplication1.sln
│           └── WindowsApplication1.vbproj
├── Help
│   ├── about.gif
│   ├── about.htm
│   ├── about.jpg
│   ├── arrowr.jpg
│   ├── award_5.gif
│   ├── awards.htm
│   ├── awards.jpg
│   ├── breakpointlist_properties.htm
│   ├── breakpoint_properties.htm
│   ├── BS4D_rate5.png
│   ├── demo_asp_csharp.htm
│   ├── demo_asp_vb.htm
│   ├── demo_binary_modules_vb.htm
│   ├── demo_cross_language.htm
│   ├── demo_debug_csharp.htm
│   ├── demo_debug_delphi.htm
│   ├── demo_debug.jpg
│   ├── demo_events_csharp.htm
│   ├── demo_events_vb.htm
│   ├── demo_hello1.jpg
│   ├── demo_hello2.jpg
│   ├── demo_hello_csharp.htm
│   ├── demo_hello_delphi.htm
│   ├── demo_hello_vb.htm
│   ├── demo_invoke_csharp.htm
│   ├── demo_invoke_delphi.htm
│   ├── demo_invoke.jpg
│   ├── demos.htm
│   ├── demo_test_arrays_vb.htm
│   ├── demo_test_delegates_vb.htm
│   ├── demo_test_enums_vb.htm
│   ├── demo_test_events_vb.htm
│   ├── demo_test_structures_vb.htm
│   ├── demo_winforms_vb.htm
│   ├── downloads.gif
│   ├── downloads.htm
│   ├── downloads.jpg
│   ├── errorlist_properties.htm
│   ├── faq.jpg
│   ├── feedback.gif
│   ├── feedback.htm
│   ├── feedback.jpg
│   ├── forum.gif
│   ├── forum.htm
│   ├── forum.jpg
│   ├── index.htm
│   ├── modulelist_methods.htm
│   ├── modulelist_properties.htm
│   ├── module_properties.htm
│   ├── namespace.htm
│   ├── news.gif
│   ├── news.htm
│   ├── news.jpg
│   ├── order.gif
│   ├── order.htm
│   ├── order.jpg
│   ├── paxcsharp_features.htm
│   ├── paxlogo.jpg
│   ├── paxscripter_events.htm
│   ├── paxscripter.htm
│   ├── paxscripter_methods.htm
│   ├── paxscripter_properties.htm
│   ├── paxscriptnet_events.htm
│   ├── references.gif
│   ├── references.jpg
│   ├── reflection_namespace.htm
│   ├── scripterror_properties.htm
│   ├── scripter_state.htm
│   ├── shareit_1.gif
│   ├── single_lic.htm
│   ├── site_lic.htm
│   ├── styles.css
│   └── title.htm
├── paxscript-net.dll
└── readme.txt

39 directories, 315 files

标签: script NET sc 代码 C#

实例下载地址

paxscriptnet2.7(价值187美金)C#代码解释执行器

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警