typedef in C#?

  • Thread starter Thread starter pnp
  • Start date Start date
Is there a typedef in C# or even a substitute for it?

Well, there's aliases:

using Foo.Bar.Baz = SomeOtherName;

That's as close as you get, but it's not really the same as typedefs.
 
Back
Top