Is csharp scripting compatible with .net 10 file based program #121370
-
|
I wonder about what the exactly difference from both approach performance wise, i can see in die based program you can choose sdk. I mean considering the limitation for file based program is one file, just wondering if scripting api updated too to match what file based program can do or both stay as incompatible, which means if write down the script that you run in csharp scripting, it will not work as file based program or vice versa? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
No, they are not the same. Scripting is interactive, you can load libraries in the middle of execution, change the definition of a symbol or function, etc. File-based program is the same as statically compiled program. It's compatible and gradually upgradable to project-based program. |
Beta Was this translation helpful? Give feedback.
-
|
I think what would be helpful would to be ask; is what do you consider scripting? Then re-read your: "Is csharp scripting compatible with .net 10 file based program" This explains it very well..: https://www.youtube.com/watch?v=KjqePh3naKQ
.net 10 enables.. "file based program" ... which enables a scripting type experience. unless i miss understood what you were asking. |
Beta Was this translation helpful? Give feedback.
No, they are not the same.
Scripting is interactive, you can load libraries in the middle of execution, change the definition of a symbol or function, etc. File-based program is the same as statically compiled program. It's compatible and gradually upgradable to project-based program.