0
votes
Call ASP.NET Function From Javascript?
You might want to create a web service for your common methods.
Just add a WebMethodAttribute over the functions you want to call, and that's about it.
Having a web service with all you …
1
vote
Is ReSharper worth the adjustment, is there a good tutorial for 4?
When you have written the first Repository class in your system just to your liking, and you smash down Ctrl+Shift+R, and choose extract interface, you understand why ReSharper is the good stuff. …
0
votes
Extension interface patterns
Ouch. Please don't extend Interfaces.
An interface is a clean contract that a class should implement, and your usage of said classes must be restricted to what is in the core …
1
vote
Best way to access a control on another form in c#?
@Dylan: I got to agree with rob on this one. Don't couple the forms together, but let them sort it out via events.
@Ed: Please, please don't pass a form down to a child class. This gives …
2
votes
Looking for best practice for doing a “Net Use” in C#
Use P/Invoke and WNetAddConnection2
There should also be some …
15
votes
Generic Type Checking
public class Class1<GenericType> where GenericType : struct
{
}
This one seemed to do the job..
…
3
votes
Hidden Features of C#?
I have often come across the need to have a Generic parameter-object persisted into the viewstate in a base class.
public abstract class BaseListControl<ListType,KeyType,Paramete …
3
votes
Conditional Linq Queries
When it comes to conditional linq, I am very fond of the filters and pipes pattern.
http://blog.wekeroad.com/ …
3
votes
How do I fill a DataSet or a DataTable from a LINQ query resultset ?
Make a set of Data Transfer Objects, a couple of mappers, and return that via the .asmx.
You should never expose the database objects directly, as a change in the procedure schema wi …
0
votes
Reading Excel files from C#
I know that people have been making an Excel "extension" for this purpose.
You more or less make a button in Excel that says "Export to Program X", and then export and send off the data in a …
1
vote
Anyone know a quick way to get to custom attributes on an enum value?
I generally find reflection to be quite speedy as long as you don't dynamically invoke methods.
Since you are just reading the Attributes of an enum, your approach should work just fine witho …
0
votes
In C#, do you need to call the base constructor?
AFAIK, you only need to call the base constructor if you need to pass down any values to it.
…
3
votes
[C#] Parse string to TimeSpan
This seems to work, though it is a bit hackish:
TimeSpan span;
if (TimeSpan.TryParse("05h:30m".Replace("m","").Replace("h",""), out span))
MessageBox.Show(span.ToStrin …
0
votes
Creating controls within a Loop
This should work fine?
for (int i = 0; i < 6; i++)
{
TableCell tCell = new TableCell();
TextBox txt = new TextBox();
tCell.Controls.Add(txt);
tRow.Cells.Add(tCell …
1
vote
How can I invoke (web) Button.Click in c#?
You will need an event to act as a proxy, but you are pretty much better off just refactoring your code.
private EventHandler ButtonClick;
protected override void CreateChi …
