Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public TResponse ExecuteCustomMessage<TResponse>(IModbusMessage request)
    where TResponse : IModbusMessage, new()

what is the above means? I have never see anything like that before, although I've been coding in C# for couple of years now... It is supposed to be a function, but I am not sure what is this < > and keyword where and new() at the end...

share|improve this question
7  
Strange beasts you can see out there... – Mehrdad Mar 15 '12 at 3:32
I don't think it's about the generics. I think it's about the type constraints. Well you only say the type TResponse must be a subclass of IModbusMessage or whatever that is, and there must be a constructor that takes no arguments. In many cases this means you want to construct new objects of TResponse in your class. – CommuSoft Mar 15 '12 at 3:42
Did the answer make sense? – bryanmac Aug 6 '12 at 1:06

4 Answers

up vote 8 down vote accepted

It is a constraint on the TResponse generic type which implements the interface IModbusMessage and has a parameterless constructor.

where T : (interface name) The type argument must be or implement the specified interface. Multiple interface constraints can be specified. The constraining interface can also be generic.

where T : new() The type argument must have a public parameterless constructor. When used in conjunction with other constraints, the new() constraint must be specified last.

Also, as others have pointed out, I recommend you read the generics docs (pointed to by SLaks in the comments).

share|improve this answer
1  
I doubt the OP has the prerequisite knowledge to understand your answer. – ChaosPandion Mar 15 '12 at 3:34

What it implies is TResponse should be of type implementing the interface IModbusMessage

and new() implies of providing a default parameterless constructor.

I think you should better start off reading about Generics

share|improve this answer

Where: new() is the Generics Constructor Constraint

generic type parameter TResponse must support a public default constructor.

check this for detail http://msdn.microsoft.com/en-us/library/ms379564(v=vs.80).aspx

share|improve this answer

it is a generic method. the specifies the type or family of objects that the method can work with. The where clause is a constraint that says TReponse must implement the IModbusMessage interface, and that it must be able to be instantiated with the new keyword.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.