Question:Which statements will give the path where the executing assembly is currently located?
A System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
B System.Reflection.Assembly.GetExecutingAssembly().Location;
C AppDomain.CurrentDomain.BaseDirectory;
D None of these
+ AnswerB
+ Report