スタック情報(debugger.Where関数の戻り値)を保持します。
[型]
| class StackInfo:         Number = None         AddressInfoText = None | 
[変数]
|  |  | 
| 
Number | 
スタック番号が格納されます。 | 
| 
AddressInfoText | 
スタックのアドレス情報が文字列で格納されます。 | 
[詳細説明]
[使用例]
| >>>info = debugger.Where()    1: test2.c#    2: test1.c#main#41 >>>print info[0].Number 1 >>>print info[0].AddressInfoText test2.c# >>>info = debugger.Where 1: test2.c# --- Information below might be inaccurate. 2: test1.c#main#41 >>>print a[1].Number None >>>print a[1].AddressInfoText --- Information below might be inaccurate. >>> |