Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- BaseC kek = new DerivedC();
- Console.ReadLine();
- }
- }
- public class BaseC
- {
- public int x;
- }
- public class DerivedC : BaseC
- {
- public int y;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement