本文介绍了的typedef的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想给C#中的类型别名,所以我可以说SOMETYPEID指的是

int等,我怎样才能在C#上做这个?


类似于c ++中的typedef long SOMETYPEID

解决方案






本身没有typedef。你可以做这样的事情:


使用SOMETYPEID = System.Int64;


上面的主要缺点是它必须包含在你想要使用SOMETYPEID的每个

代码文件中。


问候,

Dan

I want to give an alias for a type in C# so i can say SOMETYPEID refers to
int etc, how can I do this on C#?

something like typedef long SOMETYPEID in c++

解决方案







There is no typedef per se. You could do something like this, though:

using SOMETYPEID = System.Int64;

The primary drawback to the above is that it must be included in every
code file where you would want to use SOMETYPEID.

Regards,
Dan


这篇关于的typedef的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 17:15