|
Παρουσίαση με Ετικέτες
Όλες οι Ετικέτε... » AOP (RSS)
-
I am in a mood this year so I decided to spend some time with a problem that I have left in the past.
The problem
I really wanted to use Runtime member for existent Types and also enable validation for those members. But for the reason i have describe in this post it was not possible, unless I change DevExpress source code and recompile (bad ...
-
I though i should post on this one cause its far more than interesting suppose you have a Customer that is a Person public class Person
{
public string Name { get; set; }
}
public class Customer : Person
{
}
and implements 2 interfaces ICustomUser,ICustomer
public interface ICustomUser
{
string Title { get; set; }
}
public ...
-
The problem Xpo in order to support transactions implements some special kind of property setters like private string lastName;
public string LastName
{
get
{
return lastName;
}
set
{
string oldValue = lastName;
if (oldValue == value)
return;
lastName = value;
...
|
|
|