this is my first post on Stack Overflow, so please excuse or correct any faux pas of mine. Thanks in advance.

I'm translating some example code line by line from C# to VB.NET in an effort to understand how to use GPU.NET in VB.NET.

Here is a link to the entire example code: https://github.com/tidepowerd/GPU.NET-Example-Projects/blob/master/CSharp.LinearAlgebra/VectorOps.cs

The lines which confuse me looks like this:

    [Kernel(CustomFallbackMethod = "AddCpu")] 

I see in the code that these lines appear just before the method declaration:

    "private static void" 

What kind of line appears before a method declaration? Or is it a continuation of the last? I hope this is obvious to a native C Sharper.

The namespace is an imported resource from http://www.tidepowerd.com/ It's called GPU.NET. It enables GPGPU or "General Purpose Computing on Graphics Processing Units" in languages other than Nvidia's "CUDA C", such as VB.NET.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

It's an Attribute. It's a way to mark up code that can be used at runtime or compile time.

I would google VB.NET and Attributes. You can read some passages here on O'Reilly

Your example would be converted to:

       <Kernel(CustomFallbackMethod:="AddCpu")>

Be sure to use _ if you decide to put it on the line before your method.

link|improve this answer
1  
the _ is no longer needed for line continuation in the latest version of VB.NET. – Jeff Paulsen Jun 2 '11 at 14:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.