- {Outlook should have a sort option that let's you select unread, but they don't.}
- To see unread message:
- Select the Search Format folder
- select Unread
- close folders you are not interested.
- Finally, another something simple made hard courtesy of MicroSoft.
Strong Name Doesn't work
Learned a couple things for the MS learning experience. First, 'sn' work or it doesn't. There is no need to log out or reboot. Second, a 64 bit MS will point to the 32 bit 'sn.exe' application. Everything will look like it work, but it didn't.
- talk about the 64 bit issue
- My 64 bit was located in a different location:
Using Assert function for debugging.
- example code:
[C#] // Create an index for an array. int index; // Perform some action that sets the index. // Test that the index value is valid. Debug.Assert(index > -1); Was missing the following line:
using System.Diagnostics;
- told me the missing line.

No comments:
Post a Comment