What's wrong with
using T = int;
?
It causes compiler-error CS 1001 Identifier expected
CS 1001 Identifier expected
You have to write
using T = System.Int32;
because int is just a shorthand for System.Int32, and those shorthands are not implemented in the language specification (i.e., int is not an identifier according to the specs). You need to give the full qualified name.
int
System.Int32
Copyright © 2021 Jogjafile Inc.
You have to write
because
int
is just a shorthand forSystem.Int32
, and those shorthands are not implemented in the language specification (i.e.,int
is not an identifier according to the specs). You need to give the full qualified name.