小编sam*_*sam的帖子

无法在android studio中创建AVD

我是Android新手.我刚刚安装了Android Studio并创建了一个默认项目.现在我正在尝试创建AVD但我无法创建.确定按钮未启用.请帮忙.

附上截图

android android-virtual-device

6
推荐指数
1
解决办法
1万
查看次数

如何在C#中调用接口

interface ISample
{
    int fncAdd();
}

class ibaseclass
{
    public int intF = 0, intS = 0;
    int Add()
    {
        return intF + intS;
    }
}
class iChild : ibaseclass, ISample
{
    int fncAdd()
    {
        int intTot = 0;
        ibaseclass obj = new ibaseclass();
        intTot = obj.intF;
        return intTot;
    }
}
Run Code Online (Sandbox Code Playgroud)

我想打电话ISample,static void Main(string[] args)但我不知道该怎么做.你能告诉我怎么样吗?

.net c# oop interface

3
推荐指数
1
解决办法
2万
查看次数

标签 统计

.net ×1

android ×1

android-virtual-device ×1

c# ×1

interface ×1

oop ×1