4
votes
3answers
609 views
What is the best way to convert an IEnumerator to a generic IEnumerator?
I am writing a custom ConfigurationElementCollection for a custom ConfigurationHandler in C#.NET 3.5 and I am wanting to expose the IEnumerator as a generic IEnumerator.
What would be the b …
0
votes
1answer
142 views
Telerik RadGrid Cast exception when populated with an array of objects by their parent type
I have just come across a Casting Exception while using the Telerik RadGrid.
It occurs during the DataBind event if I have an array of objects as the datasource
radgrid1.DataS …
0
votes
3answers
218 views
Getting an IOException on multiple writes to a file.
Hey,
I have implemented a csv file builder that takes in an xml document applies a xsl transform to it and appends it to a file.
public class CsvBatchPrinter : BaseBatchPrin …
2
votes
3answers
661 views
Inserting a record with a Composite Key using NHibernate
Hey all,
I am working with a legacy database that uses composite keys. And I am trying to use NHibernate to insert a new record into the database. NHibernate specifies that I have to create …
0
votes
Telerik RadGrid Cast exception when populated with an array of objects by their parent type
Just found the answer.
var objects = new BaseObject[] { new ChildObject1(), new ChildObject2() };
radgrid1.DataSource = new List<BaseObject>(objects);
…
0
votes
Using Generics in Interfaces
You could try
public struct CookieData<T>
where T : Object
{
T Value { get; set; }
DateTime Expires { get; set; }
}
That way all instances of T w …
0
votes
Formatting of hard to read try..catch..finally blocks?
I think your formatting reads well too. My suggestion would be to only use the catch statement sparingly. Only use it when you actually need to catch something. Otherwise you can let o …
0
votes
Formatting html dates and numbers on the fly
you could try
<td><%# ((DateTime)Eval("myDate")).ToString("{0:dd MMM yyyy}") %></td>
…
0
votes
Getting an IOException on multiple writes to a file.
Hey all thanks for your responses.
I have come up with a solution that works for me. A little bit hacky but it does the job.
protected override void PrintDocument(XmlDocumen …
1
vote
What is the correct way to write a constructor for a wrapper class
I have written a base Wrapper Object that I have all my wrappers inherit from.
public abstract class BaseWrapper<TBaseType>
where TBaseType : class
{
protected readonly TBa …
2
votes
C# - How to access internal class from external assembly
I see only one case that you would allow exposure to your internal members to another assembly and that is for testing purposes.
Saying that there is a way to allow "Friend" assemblies acce …
