0
Console.log is what for?
In c#
4 Réponses
+ 2
Do you mean what is the equivalent of console.log in c#?
Then you can have a look at it:
https://stackoverflow.com/questions/48903404/equivalent-of-console-log-in-c-sharp
+ 1
The console. log() is a function that writes a message to log on the debugging console, such as Webkit or Firebug. In a browser you will not see anything on the screen. It logs a message to a debugging console. It is only available in Firefox with Firebug and in Webkit based browsers (Chrome and Safari)
+ 1
#For javascript:
The console. log() is a function in JavaScript which is used to print any kind of variables defined before in it or to just print any message that needs to be displayed to the user. Syntax: console. log(A);
learn here:
https://www.sololearn.com/learning/1124/
+ 1
Five Jason
There is no console.log in C#.
You have started to learn JavaScript not C# and console.log is a part of JavaScript which is used for debugging purpose.