C#_output A(w/mk) = 0.05

Hi,
sorry i couldnt come up with better name for the topic. How do i take that value out from c# component while output port name is A(w/mk),it thows me an error.

If the output port name is A it works;

attached image

You can’t.

On valid identifiers, from: What Is an Identifier in C, C++ and C#?

Rules for Identifiers

When naming an identifier, follow these established rules:

An identifier cannot be a C# keyword. Keywords have predefined 
  special meanings to the compiler.
It cannot have two consecutive underscores.
It can be a combination of numbers, letters, connectors and Unicode characters.
It must start with a letter of the alphabet or an underscore, not a number.
It should not include a white space.
It cannot have more than 511 characters.
It has to be declared before it is referred.
Two identifiers cannot have the same name.
Identifiers are case sensitive.

You might also want to have a look at this document (search for “9.4.2 Identifiers”):
https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-334%201st%20edition%20December%202001.pdf

// Rolf

2 Likes