
![]() |
Show Changes |
![]() |
|
![]() |
Recent Changes |
![]() |
Subscriptions |
![]() |
Lost and Found |
![]() |
Find References |
![]() |
Rename |
![]() |
Administration Page |
| Search |
History
| 9/25/2008 6:00:33 PM |
| FLWCOM-jwdavidson |
| 4/25/2007 9:16:57 PM |
| -202.82.130.33 |
| 4/25/2007 9:16:22 PM |
| -202.82.130.33 |
| 3/10/2007 4:08:15 AM |
| -81.179.14.81 |
| 9/29/2006 9:23:53 AM |
| -130.160.47.138 |
![]() |
List all versions |
An expression can be:
Here are some examples:
| 100 | A number |
| "hello" | A string |
| DateTime.Now | A member (property) reference |
| topic.Title | The name of the current topic |
A literal is a number, a string, a collection or a block.
Here are some examples:
| 100 | A number |
| -20 | A negative number |
| "hello" | A string |
| [100, 200, 300] | A collection with three elements |
| {topic.LastModifiedBy} | A block literal (see WikiTalkBlock) |
"He said \"How are you?\""
An unqualified reference is a reference, by name, to a variable (that is in scope). This could be either a WikiTalkWellKnownObject, a BlockParameter or a member of an object that has been brought into scope using the WithFunction.
Here are some examples:
| topic | A reference to the variable called topic |
| topics | A reference to the variable called topics |
| myTemporaryVariable | A reference to the variable called myTemporaryVariable |
A qualified reference is a reference to a member (property or function) of some object.
Here are some examples:
| DateTime.Now | The current date and time (the Now property of the DateTime object) |
| someString.Length | The length of the given string |
| "hello".Length | The length of the given string (in this case, 5) |
| "hello".SubString(0,2) | The first 2 character of the word hello: he |
| "hello".SubString(0,2).Length | The length of the first 2 character of the word hello; i.e., 2 |