Tagged Questions

0
votes
2answers
12 views

C# Create Snap To Grid Functionality

I am trying to create some snap to grid functionality to be used at run time but I am having problems with the snapping part. I have successfully drawn a dotted grid on a panel but when I add a label …
1
vote
2answers
17 views

C# Globalization & Satellite DLL’s

I'm working on localizing an app I've written in C#. Everything seems to be working nicely, using satellite resource assemblies to translate each form's strings (as per this tutorial: …
0
votes
4answers
84 views

I am concerned that the popularity of ruby is flagging. What are the various popularity metrics?

What are the various sites that offer metrics that compare Ruby, Python, Perl, Smalltalk etc. What are their respective metrics? Do any of them control or account for the time that Rails was …
2
votes
2answers
46 views

Obtain Listing of all Fields in a Project

I have a relatively large solution that I compile to DLL. I would like to print out or list all the fields in every class in this project. I'm looking for a Visual Studio feature, Visual Studio …
8
votes
12answers
273 views

How do you create an english like word?

How do you create words which are not part of the english language, but sound english? For example: janertice, bellagom
4
votes
3answers
44 views

How do you get the country/state/region/city/state/zip/postal from GPS coordinates?

I have GPS coordinates on all of my photos. I want to include tags/IPTC data for the city, state, zip, etc.. However all I have is the GPS coordinates. How can I take these and get meaningful info in …
2
votes
4answers
78 views

Multiple File I/O

Hi All, Sorry about the lame title. I have a project I'm working on and I would appreciate any suggestions as to how I should go about doing the IO stuff. Ok, I have 3 text files. One file contains …
0
votes
3answers
49 views

Is there a Perl equivalent to the null coalescing operator (??) in C#?

I started to really like C#'s ?? operator. And I am quite used to the fact, that where there is something handy in some language, it's most probably in Perl too. However, I cannot find ?? equivalent …
1
vote
3answers
139 views

C# Math Function Implementation Help

How can I implement the following function: in C#? Thanks.
2
votes
3answers
79 views

What is the fastest way to insert a large amount of records into a SQL Server DB?

I need to insert millions of records being read from disk into SQL server. I am parsing these from a file on one machine, in what is a single-threaded process. Ideally I would want it to perform well …
0
votes
2answers
25 views

conditional in new object assignment?

what is shorthand for this or should i not do this? do i call a method to check? bool assign=value; objectsList = from o in objects select new { id=o.id, …
4
votes
9answers
244 views

C#, Are these 2 statements identical?

Do the following 2 code snippets achieve the same thing? My original code: if (safeFileNames != null) { this.SafeFileNames = Convert.ToBoolean(safeFileNames.Value); } else { …
4
votes
5answers
185 views

C#, why does reSharper Invert IFs? does it give better performance (even slightly)

Consider the following code sample: private void AddEnvelope(MailMessage mail) { if (this.CopyEnvelope) { // Perform a few operations } } VS private void …
2
votes
4answers
49 views

Non-strict multiple interface type parameter constraints?

Excuse me if this is a dupe, but I couldn't seem to get the right combo of keywords to filter down the various type constraint and generics questions out there (as there are a lot). I have two …
0
votes
3answers
46 views

How can I pass a multi dimensional array as an argument to a worker thread in C#?

How can I do this in c#? I have GUI and worker threads and I have to pass the array or be able to access the array from worker array?! Thread t = new Thread (delegate() { DoWork (double[,] data); …

1 2 3 4 5 3513 next
15 30 50 per page