本文整理汇总了C#中Base.Method方法的典型用法代码示例。如果您正苦于以下问题:C# Base.Method方法的具体用法?C# Base.Method怎么用?C# Base.Method使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Base
的用法示例。
在下文中一共展示了Base.Method方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
public static void Main(string[] args)
{
var br = new BaseResult();
var dr = new DerivedResult();
var bas = new Base();
var derived = new Derived();
bas.Method();
bas.MethodWithParameter1(br);
bas.MethodWithParameter1(dr);
bas.MethodWithParameter2(dr);
bas = derived;
bas.Method();
bas.MethodWithParameter1(br);
bas.MethodWithParameter1(dr);
bas.MethodWithParameter2(dr);
derived.Method();
derived.MethodWithParameter1(br);
derived.MethodWithParameter1(dr);
derived.MethodWithParameter2(br);
derived.MethodWithParameter2(dr);
}
示例2: Main
public static void Main(string[] args)
{
Base b = new Base();
Derived d = new Derived();
Base b1 = new Derived();
b.Method();
d.Method();
b1.Method();
Console.ReadKey();
}
示例3: MainMethod
public static int MainMethod(string[] args)
{
Base b = new Base();
dynamic x = int.MaxValue;
b.Method(x);
if (Test.Status == 1)
return 0;
return 1;
}
开发者ID:chcosta,项目名称:corefx,代码行数:9,代码来源:Conformance.dynamic.dynamicType.overloadResolution.method.1class.2param.cs