TreeNode tn = SysTreeNode::getSharedProject();
tn = tn.AOTfindChild("projectNAme");
tn.AOTrun();
tn = tn.AOTfindChild("projectNAme");
tn.AOTrun();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| System.Exception exception;try{ System.Int16::Parse('abcd'); throw Exception::Error;}catch{ error('Caught an exception'); error(con2Str(xSession::xppCallStack())); exception = CLRInterop::getLastException(); while (exception) { error(CLRInterop::getAnyTypeForObject(exception.ToString())); exception = exception.get_InnerException(); }} |