Tagged Questions

0
votes
0answers
0 views

What is a “method group”?

When working with delegates, events and async methods, any mistakes in my code throws errors by Visual Studio which mention the term "method group". What exactly is a method group? My understanding …
2
votes
3answers
41 views

Convert Time to decimal in C#

what i need to do, is have two defined strings that is inputted by the user, string in = "9:35"; //am string out = "11:55"; //am and i need to subtract them, so that would get the total hours that …
0
votes
0answers
9 views

C# books for real world practices

All, There are so many books out there for C# specific to the language and even more C# books that cover many aspects of the .NET framework. I have read many of them but I always end asking the same …
0
votes
2answers
15 views

Need a faster DataGridView bulk edit method

Hello all, This is what I'm currently using to implement a "Check all" feature on a bound DataGridView: int max = ((DataTable)dataGridRes.DataSource).Rows.Count; for (int i = 0; i < max; i++) { …
2
votes
6answers
57 views

What line(s) this code might throw a “Index was outside the bounds of the array” exception?

A little background on this error: The customer getting this error message in their log file and support hasn't been able to reproduce it yet. So I'm reviewing the code trying to determine what may …
1
vote
5answers
32 views

How should I inherit IDisposable?

Class names have been changed to protect the innocent. If I have an interface named ISomeInterface. I also have classes that inherit the interface, FirstClass and SecondClass. FirstClass uses …
0
votes
2answers
214 views

problems inserting tags into a sqlite DB, C#

i have 2 tables "CREATE TABLE if not exists tag_name( " + "tagid INTEGER PRIMARY KEY, " + "title TEXT UNIQUE);"; "CREATE TABLE if not exists media_tags( " + …
3
votes
5answers
54 views

Why can’t I pass List<Customer> as a parameter to a method that accepts List<object>?

The following code gives me this error: Cannot convert from 'System.Collections.Generic.List' to 'System.Collections.Generic.List'. How can I indicate to the compiler that Customer indeed …
0
votes
0answers
5 views

Replacement XML Resolver takes ages - Is it still attempting to go to the broken server?

I am processing an XML document who's DTD is on a server that doesn't respond and the request times out. XmlReaderSettings settings = new XmlReaderSettings(); settings.ProhibitDtd = false; …
0
votes
1answer
11 views

How to wrap .Net data provider for entity framework

I am trying to write wrapper of .Net data provider layer in Entity Framework. I wanted to know which data provider classes do I have to wrap. Currently I am using Jaroslaw Kowalski's Provider wrapper …
0
votes
2answers
33 views

Programmatically get the number of indexed pages in Google?

As an SEO metric I'd like to programmatically get the number of by Google indexed pages. (if I search "site:mydomain.com" I want the get number of pages found). Is there any lib for this or do I …
4
votes
2answers
51 views

Where to keep things like connectionstrings in an IoC pattern?

In my everlasting quest to suck less I'm currently checking out mvc Turbine to do the IoC dirty work. I'm using the mvc Turbine nerd dinner example as a lead and things look rather logical thus far. …
0
votes
0answers
12 views

Problem with datagridview and datasources/rows C#

Hi all, In a (windows forms) program I'm working on I import a CSV file and use that as a DataSource for a DGV. I first run a method to import the CSV file based on a path specified, like so: …
0
votes
0answers
1 views

How does one create a global testfixturesetup routine with MBUnit and C#?

I'm using MBUnit for my test project and have a setup routine that must run before several different test fixtures can run properly. Currently in each TestFixture I've got the [TestFixtureSetup] …
1
vote
1answer
7 views

Datagridview export to Excel using XML format

Hi, I tried Excel 12.0 object library to export datagridview to excel. I don't want open the Excel instead I want to save the file.I don't have Excel installed where I am going to run this …

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