Tagged Questions
6
votes
2answers
1k views
c# Mocking Interface members of a concrete class with Moq
I have an interface ITransaction as follows:
public interface ITransaction {
DateTime EntryTime { get; }
DateTime ExitTime { get; }
}
and I have a derived class PaymentTransaction ...
4
votes
4answers
448 views
C#: Method to return object whose concrete type is determined at runtime?
I'm thinking about designing a method that would return an object that implements an interface but whose concrete type won't be know until run-time. For example suppose:
ICar
Ford implements ICar
...
3
votes
6answers
1k views
Finding the Concrete Type behind an Interface instance
To cut a long story short I have a C# function that performs a task on a given Type that is passed in as an Object instance. All works fine when a class instance is passed in. However, when the object ...
1
vote
1answer
295 views
Populating DataGridView using DataGridView.DataSource property and BindingSource
The following two code snippets populate a BindingSource which is later assigned to
a DataGridView.DataSource.
When the concrete class QuotesTool.LineItem is used (first snippet) the grid DOES ...
-1
votes
3answers
422 views
Get concrete Type from Object DataSource and use this type variable in a cast operation
I have a
public object DataSource {get;set} and a public string DisplayMember {get;set}
The object can take everything like an IList or a CustomerListDataSet.
I do not know what the user will set ...