2
votes
4answers
233 views
Can you pass an instance of a generic type to other strongly-typed methods?
I have a situation where I have a method that takes a couple of overloads. I have a fairly common scenario where if some condition is true, I call one of the overloads, otherwise I call something …
0
votes
Passing int list as a parameter to a web user control
WHile I can't say I have any particular experience with this error, other sources indicate that you need to add a conversion to the type InstanceDescriptor. check out:
…
2
votes
How to raise custom event from a Static Class
Several folks have offered up code examples, just don't fire an event using code such as:
if(null != ExampleEvent)
{
ExampleEvent(/* put parameters here, for events: sender, event …
1
vote
Exception safety/handling with .Net HtmlTextWriter?
If you are only concerned about errors that occur during the GenerateHtml() call, and don't like the second approach (which seems fine to me), why not move the closing span tag into a finally block …
0
votes
Declare a generic type instance dynamically
See the answer from the similar question "Dynamically Create a Generic Type for Template". The …
3
votes
Generic class used as constraint to generic method in C#?
Just follow the T:
// ...
{
//...
MyCollection1 collection3 = GetCollectionFromDb<MyCollection1>(Collection1Name);
}
private static T GetCollec …
0
votes
Beginner Programmer - Which direction
In my opinion languages are secondary. Learn the fundamentals and it won't matter what language you use (you can always learn a new one).
When I was learning the basics I read everything I …
0
votes
How to wait for a thread to finish its work
Assuming you have no access to the Worker class, just add a flag that indicates when PostProcessing has done and sleep until the flag is set:
static bool isProcessed = false;
static …
