码迷,mamicode.com
首页 > 其他好文 > 详细

直接在文本看代码,谁能指出错在哪里

时间:2015-07-29 00:27:50      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.IO;
//using ddd;

namespace ddaaaaaaaa
{
    public class Test : ddd.ISomeThingFunction
    {
        public Test()
        {

        }

        public void Test1()
        {

        }

        public void haha()
        {
            throw new NotImplementedException();
        }
    }
    public class Test11
    {

        void ddd()
        {
            Test t = new Test();
            //t.NBFunction();
            t.NBFunction("");
        }
    }

}





namespace ddd
{
    public interface ISomeThingFunction
    {
        void haha();
    }
    public static class ExtendFunction
    {
        public static void NBFunction(this ISomeThingFunction dd,string str)
        {

        }
    }
}

 

直接在文本看代码,谁能指出错在哪里

标签:

原文地址:http://www.cnblogs.com/orp1989/p/4684590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!