I'm translating some code with comments at the top of every file. The files look like this:
// 1 comment
// 2 comment
// Red comment
// Blue comment
package com.example.code;
import java.something.Whatchamacallit;
...
They get converted like so:
// 1 comment
using System.Stuff;
// 2 comment
// Red comment
// Blue comment
namespace Com.Example.Code
{
...
}
I think that the using directives should be put either at the very top of the file or right above the namespace.
I'm translating some code with comments at the top of every file. The files look like this:
They get converted like so:
I think that the using directives should be put either at the very top of the file or right above the namespace.