什么是C#中的.class(在Java中使用)的等价物

时间:2011-11-20 07:36:32

标签: c# java class

在Java中:

TokenStream my_stream = analyser_exclude.tokenStream(fieldName, my_reader);
TermAttribute my_token = TermAttribute.getAttribute(TermAttribute.class);

在VB.NET中:

Dim my_stream As TokenStream = analyser_exclude.TokenStream("", my_reader)
Dim my_token As TermAttribute = DirectCast(my_stream.GetAttribute(GetType(TermAttribute)), TermAttribute)

我刚刚在VB.NET中更改了fieldname,因为我不需要它。此代码适用于VB.NET 但我不知道如何更改C#中的DirectCast和最后一行代码(在Java中)Termattribute.Class

在C#中: ???

请帮助我,我不知道如何在C#中更改这些行。

1 个答案:

答案 0 :(得分:11)

您正在寻找typeof

TermAttribute my_token =
    (TermAttribute)my_stream.GetAttribute(typeof(TermAttribute));