可以這樣說,絕大多數的大型網站都會用到eval()函數,雖然一直在用,但其具體含義及使用還真沒特別去注意過,搜索了下也沒有什麼明確的解釋。
翻譯過來的中文釋義大體如下:
C# eval ()函數,是一個用來求值的解析表達式,支持布爾型(Boolean),二進制方式,算法,一元,所屬,
成員(例如:object.property 對象屬性),索引值(數組索引);條件函數,也支持變量賦值。
其有點在於:
無需運行時編譯;
無需使用JScript.Net;
無需使用數據表。
英文如下:
C# eval function
parse expression and evaluate it. Supports Boolean, Bitwise, Arithmetic, Unary, Paren, Member (such as object.property ), Indexer (such as array[index]) and ConditionalIf(?:), also supports Variable assign.
you can use it like evaluate one statement C# source code.
not use runtime Compiler.
not use JScript.Net.
not use DataTable