Forum: C# Oct 4th, 2005 |
| Replies: 6 Views: 19,159 Late, I know, but -- Kate is correct. In the case that you want to return two variables of different types, you can simply return an array of object, or a Class created to contain those different... |
Forum: C# Apr 17th, 2005 |
| Replies: 3 Views: 6,993 A good place to start since it seems you aren't running you encryption routine on a separate thread, would be to add:
Application.DoEvents();
You would add that into your encryption loop. ... |
Forum: C# Apr 14th, 2005 |
| Replies: 13 Views: 5,434 Since I am currently using VS.NET 2003, I haven't looked into the express products although I have heard good things. Like I said, #develop would be a good place to start. See if you like it and if... |
Forum: C# Apr 14th, 2005 |
| Replies: 2 Views: 5,989 .NET has a nice set of File/Directory manipulation classes built right in. Check out the System.IO namespace.
Seth Webster |
Forum: C# Apr 14th, 2005 |
| Replies: 13 Views: 5,434 VS.NET IDE is very intuitive. There are some glitches but with as robust as it is, MS would have been hard pressed not to screw up somewhere. There is no IDE as comprehensive. You COULD use... |
Forum: C# Apr 3rd, 2005 |
| Replies: 10 Views: 42,311 rOckbaer,
Semantically, you are incorrect, even though in most cases that would work. What you stated will exit the Application Loop that that Application represents. For multiple Application... |
Forum: C# Apr 3rd, 2005 |
| Replies: 12 Views: 40,808 SPYRO is right. Any time that you are processing in a loop to build a string, or as some of you have stated, manipulating a large string, StringBuilder is the way.
The overhead of StringBuilder... |