|
public PropertyInfo(string name, string friendlyName, Type containingType, RelationshipTypes relationship) |
|
: this(name, friendlyName, null, DataBindingFriendlyDefault(), relationship) |
This looks like a bug to me. The third parameter null in this() is actually Type containingType. But why isn't the parameter passed along but instead null used?
Is this a bug or intended?
csla/Source/Csla/PropertyInfo.cs
Lines 104 to 105 in 881c262
This looks like a bug to me. The third parameter
nullinthis()is actuallyType containingType. But why isn't the parameter passed along but insteadnullused?Is this a bug or intended?