0
votes
XML Serialize boolean as 0 and 1
No, not using the default System.Xml.XmlSerializer: you'd need to change the data type to an int to achieve that, or muck around with providing your own serialization code (possible, but not much f …
0
votes
Is WebRequest The Right C# Tool For Interacting With Websites?
When it comes to POSTing data to a web site, System.Net.HttpWebRequest (the HTTP-specific implem …
17
votes
Best way to randomize a string array in C#
If you're on .NET 3.5, you can use the following IEnumerable coolness (VB.NET, not C#, but the idea should be clear...):
Dim rnd As New System.Random
Dim MyRandomArray = MyArray.Ord …
2
votes
How do I kill a process using Vb.NET or C# ?
Killing the Word process outright is possible (see some of the other replies), but outright rude and dangerous: what if the user has important unsaved changes in an open document? Not to mention th …
3
votes
Storing xml data in a cookie
Storing serialized data in a cookie is a very, very bad idea. Since users have complete control over cookie data, it's just too easy for them to use this mechanism to feed you malicious data. In ot …
9
votes
C# Get http:/…/File Size
Yes, assuming the HTTP server you're talking to supports/allows this:
System.Net.WebRequest req = System.Net.HttpWebRequest.Create("http://stackoverflow.com/robots.txt");
req.Method …
2
votes
Elevating process privilege programatically?
You can indicate the new process should be started with elevated permissions by setting the Verb property of your startInfo object to 'runas', as follows:
startInfo.Verb = "runas";
…
1
vote
Catching exceptions within .aspx and .ascx pages
Using the global.asax Application_Error method, as described in How to create custom error reporting pages in ASP.NET by using Visual …
0
votes
What’s the best way to get the name of a folder that doesn’t exist?
Using a freshly generated GUID within a namespace that is also somewhat unique (for example, the name of your application/product) should get you what you want. For example, the following code is …
0
votes
(C#) How to check if System.Net.WebClient.DownloadData is downloading a binary file?
Your question is a bit confusing: if you're using an instance of the Net.WebClient class, the Net.WebResponse doesn't enter into the equation (apart from the fact that it's indeed an abstract class …
1
vote
Can Dns.GetHostEntry ever return an IPHostEntry with an empty AddressList?
No, you'll not see an empty address list: even if you query a DNS label that does exist, but has no A or AAAA (IPv6) records, a SocketException ("No Such Host is Known") will be thrown.
You …
1
vote
How do i print to a Bluebird BIP-1300 thermal printer from c#?
I'm not familiar with this particular device, but in general, printers in this class require you to send RAW data, as they don't have Windows drivers.
…
8
votes
Capturing the Console Output in .NET (C#)
This can be quite easily achieved using the ProcessStartInfo.Redirec …
2
votes
Am I Running as a Service
The only way I've found to achieve this, is to check if a console is attached to the process in the first place, by accessing any Console object property (e.g. Title) inside a try/catch block. …
5
votes
Determine the LocalSystem account name using C#
You can use .NET's built-in System.Security.Principal.SecurityIdentifier class …
