CommandBase #1857
CommandBase
#1857
-
I've got a legacy project littered with inheritance of CommandBase everywhere. The latest versions of CLSA 5.* from what I have seen requires a type (CommandBase), do we know which version of CLSA dropped the support for this? |
Beta Was this translation helpful? Give feedback.
Answered by
rockfordlhotka
Oct 22, 2020
Replies: 1 comment 1 reply
-
I am not sure I understand the question. The [Serializable]
public class MyCommand : CommandBase<MyCommand>
{
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
quangas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am not sure I understand the question. The
CommandBase<T>
type remains a valid base class.