Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[BUG] FixIt resolves typealiases

Open Igoorx opened this issue 4 years ago • 0 comments

When you use FixIt to generate the code for an interface that has a method that uses a typealias, the typealias gets resolved in the output of the FixIt.

	typealias LongType = Dictionary<int, MemoryStream>;

	interface IMyInterface
	{
		public void DoSomething(LongType myArg);
	}

	class MyClass : IMyInterface
	{
		// Below method was generated with FixIt
		public void DoSomething(Dictionary<int, MemoryStream> myArg)
		{

		}
	}

Igoorx avatar Dec 28 '20 23:12 Igoorx