2
votes
What is the best method to find the newest last modified time of a folder of files?
Use the FileSystemWatcher object.
Dim folderToWatch As New FileSystemWatcher
folderToWatch.Path = "C:\FoldertoWatch\"
AddHandler folderToWatch.Created, AddressOf folderToWatch_Created
folde …
3
votes
1
vote
How Do I Know When I Am Skilled Enough To Get A C#/.NET Job?
All good comments. When I got out of school (technical "college" with a 2-year A.A.S. degree) I thought of myself as a Visual Basic programmer (cut me some slack - I've seen the light and am now w …
1
vote
Matching version number parts with regular expressions
If you don't want to use Regex you could try:
System.Diagnostics.FileVersionInfo fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo();
int major = fvi.FileMajorPart;
int …
0
votes
In c# when is the var keyword different from typing it out
It works as it should. It puts the object type as "object" when the compiler is unable to determine the correct data type.
…
1
vote
reading and writing files …
In the WriteFile method, after SW.WriteLine(Output[i]);, execute SW.Close();
I believe the buffer isn't emptied until you call Close();
…
0
votes
Programmatically access the <compilation /> section of a web.config?
Try using the ConfigurationManager.GetSection method.
…
1
vote
LINQ to SQL, Stored Procedure problem handling an INT32 field that can also be NULL
Try declaring the int variables as nullable. I.e.
int? myInt;
This way you can check them for null.
…
1
vote
How to determine whether an IP is from the same LAN programatically in .NET C#
This will get you the host name and the IP address. I'm assuming you know the IPs in your LAN so you should be able to determine if the IP address is outside the LAN that way:
// Get the …
0
votes
how to parse string for capitalized words
string foo = "Mimi loves Toto and Tata hate Mimi so Toto killed Tata";
char[] separators = {' '};
IList<string> capitalizedWords = new List<string>();
string[] words = foo.Split …
0
votes
1
vote
ASP .NET and C#
I was a straight VB6 developer when I started transitioning to VB.Net. I'd only done desktop applications - not a single thing in the web world. I started learning ASP.Net (job required it) and d …
1
vote
0
votes
how to get monitor/display device names using WinAPI/C#
Check out WMI (Windows Management Instrumentation). It's not an easy library but it can tell you a ton of stuff about your system.
…
0
votes
What’s the best way to add custom functionality to existing code in C#?
Is it possible to make the method in the class library Virtual? This would allow you to override it where you want to but keep it "as is" otherwise.
…
