Basically, I just ran a scan of my computer with Malwarebytes (updated the definitions before starting), and he said that my "helloworld" ", written in C #, has trojan .
I know this is a false positive since I only wrote the program 2-3 days ago and followed a small training site to make a program that I trust. I'm new to C #, but I don't see anything that could give a warning about the trojan.

The program manages the executable file, but is not the source file.
using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { Console.WriteLine("\n\tHello World!"); Console.WriteLine("This is my first C# program.\nI'm so proud of myself!"); Console.WriteLine("\tTeehee!"); } } }
This is code written in Notepad ++ , and it is run from the command line ( Cygwin , in fact). Why does this mean it? Is this something that, as a novice C # programmer, should I know?
c # false-positive trojan
Qwurticus Apr 08 '14 at 2:13 am 2014-04-08 02:13
source share