|
protected void WriteCursorToFile( Cursor cursor, string fileName ) { TypeConverter converter = TypeDescriptor.GetConverter( typeof( Cursor ) ); byte[] blob = converter.ConvertTo( cursor, typeof( byte[] ) ) as byte[]; if ( blob == null ) { MessageBox.Show...
|