首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何使用C#获取父类别?(包括.Net Fidel.)

在C#中,可以使用关键字base来获取父类别。base关键字用于引用当前类的直接父类。通过base关键字,可以访问父类的成员变量、方法和属性。

以下是使用C#获取父类别的示例代码:

代码语言:txt
复制
using System;

public class ParentClass
{
    public string ParentProperty { get; set; }

    public void ParentMethod()
    {
        Console.WriteLine("This is a method in the parent class.");
    }
}

public class ChildClass : ParentClass
{
    public void ChildMethod()
    {
        base.ParentMethod(); // 调用父类的方法
        Console.WriteLine("This is a method in the child class.");
    }
}

public class Program
{
    public static void Main(string[] args)
    {
        ChildClass child = new ChildClass();
        child.ParentProperty = "Parent Property Value";
        Console.WriteLine(child.ParentProperty); // 访问父类的属性
        child.ChildMethod(); // 调用子类的方法,其中包含对父类方法的调用
    }
}

输出结果:

代码语言:txt
复制
Parent Property Value
This is a method in the parent class.
This is a method in the child class.

在上述示例中,ChildClass继承自ParentClass,通过base关键字在子类中调用了父类的方法ParentMethod()。同时,子类也可以访问父类的属性ParentProperty

关于C#的更多信息,你可以参考腾讯云的相关产品和文档:

请注意,以上提供的是腾讯云相关产品和文档的链接,不包含其他云计算品牌商的信息。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

3分59秒

基于深度强化学习的机器人在多行人环境中的避障实验

领券