c#中新建的类,如果没有给它指定命名空间,那么它的命名空间是什么?另外,类外可以定义变量吗?

代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;//... 代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//在此可以定义变量吗?
delegate void TimeDelegate(string s);//委托类似于类吧,如果在此定义变量的话可以吗?是不是这里只能定义类、委托或者结构呢?还有没有其他呢?
class Mytime //没有指定命名空间,默认是?
{
public static void HelloTime(string s)
{
Console.WriteLine("Hello{0}!The time is {1} now",s,DateTime.Now);
}
public static void GoodbyeTime(string s)
{
Console.WriteLine("Goodbye{0}!The time is {1} now",s,DateTime.Now);
}
public void SayTime(string s)
{
Console.WriteLine("{0}!The time is {1} now",s,DateTime.Now);
}
}
class TestDelegate
{
public static void Main()
{
TimeDelegate a = new TimeDelegate(Mytime.HelloTime);
Console.WriteLine("Invoking delegate a:");
a("A");
TimeDelegate b = new TimeDelegate(Mytime.GoodbyeTime);
Console.WriteLine("Invoking delegate b:");
b("B");
TimeDelegate c = a+b;
Console.WriteLine("Invoking delegate c:");
c("C");
c-=a;
Console.WriteLine("Invoking delegate c:");
c("C");
Mytime t = new Mytime();
TimeDelegate d= new TimeDelegate(t.SayTime);
Console.WriteLine("Invoking delegate d:");
d("D");
}
}
展开
 我来答
xiongjiangzhou
2011-05-31 · 超过40用户采纳过TA的回答
知道小有建树答主
回答量:109
采纳率:0%
帮助的人:102万
展开全部
默认命名空间跟你的项目名称一样。在类外面还可以定义枚举,事件等。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
云手机妞妞
2011-05-31 · TA获得超过156个赞
知道小有建树答主
回答量:213
采纳率:0%
帮助的人:173万
展开全部
应该是项目名吧,没有指定命名空间,其他类里是可以直接引用的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
找努余J
2011-06-03
知道答主
回答量:6
采纳率:0%
帮助的人:3.6万
展开全部
delegate void TimeDelegate(string s);委托本身也是一个特殊的类的定义啊, //没有指定命名空间,默认就是最外层的了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vwenye
2011-05-31 · TA获得超过4984个赞
知道大有可为答主
回答量:1510
采纳率:0%
帮助的人:822万
展开全部
global::Mytime
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式