Space web hosting - Chapter 8 Object-Based Programming 323 117 // display

Chapter 8 Object-Based Programming 323 117 // display value at specified index number 118 private void ShowValueAtIndex( string prefix, int index ) 119 { 120 resultTextBox.Text = 121 prefix + “box[ ” + index + ” ] = ” + box[ index ]; 122 } 123 124 // display value with specified name 125 private void ShowValueAtIndex( string prefix, string name ) 126 { 127 resultTextBox.Text = 128 prefix + “box[ ” + name + ” ] = ” + box[ name ]; 129 } 130 131 // clear indexTextBox and valueTextBox 132 private void ClearTextBoxes() 133 { 134 indexTextBox.Text = “”; 135 valueTextBox.Text = “”; 136 } 137 138 // get value at specified index 139 private void intGetButton_Click( 140 object sender, System.EventArgs e ) 141 { 142 ShowValueAtIndex( 143 “get: “, Int32.Parse( indexTextBox.Text ) ); 144 ClearTextBoxes(); 145 } 146 147 // set value at specified index 148 private void intSetButton_Click( 149 object sender, System.EventArgs e ) 150 { 151 int index = Int32.Parse( indexTextBox.Text ); 152 box[ index ] = Double.Parse( valueTextBox.Text ); 153 154 ShowValueAtIndex( “set: “, index ); 155 ClearTextBoxes(); 156 } 157 158 // get value with specified name 159 private void nameGetButton_Click( 160 object sender, System.EventArgs e ) 161 { 162 ShowValueAtIndex( “get: “, indexTextBox.Text ); 163 ClearTextBoxes(); 164 } 165 166 // set value with specified name 167 private void nameSetButton_Click( 168 object sender, System.EventArgs e ) 169 { Fig. 8.16 Fig. 8.1FiFig. 8.16g. 8.16Indexers provide subscripted access to an object s members. (Part 4 of 6.) Fig. 8.16
Visit our web design programs services for an affordable and reliable webhost to suit all your needs.

Leave a Reply