Let's say I have a POCO class with only 2 properties; one is virtual, the other is not.
public class MyPocoClass
{
public string SomeProperty { get; set }
public virtual string SomePropertyTwo { get; set }
}
Does the virtual property (SomePropertyTwo
) have any side effect? Does it reduce performance etc?