Click here to Skip to main content
15,885,244 members

Comments by Kelly Herald (Top 3 by date)

Kelly Herald 6-Jun-23 15:16pm View    
Are you thinking of the SqlConnectionStringBuilder class? That is what I use in my code.
Kelly Herald 2-Jul-21 13:18pm View    
I agree. A very good example is never ever store a date or date/time as text in a database. First it takes up more storage in the database. Second a date format in one region will not parse correctly in a different region.
Kelly Herald 28-Sep-10 18:38pm View    
Deleted
In fact the Is64BitOperatingSystem property in .NET 4.0 is calling the IsWOW64Process API.
bool flag;
return ((Win32Native.DoesWin32MethodExist("kernel32.dll", "IsWow64Process") && Win32Native.IsWow64Process(Win32Native.GetCurrentProcess(), out flag)) && flag);