08-03-2025, 01:50 PM
I've always had a confusion: between the following two types of code, which one is relatively safer?
My thought is: script c1.
Reason:
The code of script c1 is stored in a variable, while the code of script c2 is stored in a resource.
Can it be directly viewed using a resource viewer tool?
Is the above understanding correct?
Macro c1
Macro c2
My thought is: script c1.
Reason:
The code of script c1 is stored in a variable, while the code of script c2 is stored in a resource.
Can it be directly viewed using a resource viewer tool?
Is the above understanding correct?
Macro c1
out
str code=
;public class Class1
;{
;;;;;public static string StaticFunc(string s)
;;;;;{
;;;;;;;;;return s;
;;;;;}
;}
str R=CsFunc(code "hello")
out R
Macro c2