Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

HELP! Trebam ispisati komentare koda!

[es] :: .NET :: HELP! Trebam ispisati komentare koda!

[ Pregleda: 1943 | Odgovora: 3 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

Robredo12
Robert V
student

Član broj: 177928
Poruke: 2
*.tel.net.ba.



Profil

icon HELP! Trebam ispisati komentare koda!07.04.2008. u 12:26 - pre 195 meseci
Trebam ispis komentara svake linije koda?

1. FORM.cs izgleda ovako

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Tocno_vrijeme
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
string timeDate;
timeDate = DateTime.Now.ToLongTimeString() + " " +
DateTime.Now.ToLongDateString();
textBox1.Text = timeDate;
}

private void textBox1_TextChanged(object sender, EventArgs e)
{

}
}
}



2. A ovako izgleda Program.cs

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace Tocno_vrijeme
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
 
Odgovor na temu

Predrag Glumac
Luxembourg

Član broj: 167588
Poruke: 127
*.ussignalcom.net.



Profil

icon Re: HELP! Trebam ispisati komentare koda!07.04.2008. u 13:01 - pre 195 meseci
I u cemu je problem ?
BTW komentare stavljas sa // ili blok komenara sa /* ....*/
 
Odgovor na temu

Robredo12
Robert V
student

Član broj: 177928
Poruke: 2
*.tel.net.ba.



Profil

icon Re: HELP! Trebam ispisati komentare koda!07.04.2008. u 21:34 - pre 195 meseci
Trebao bih objašnjenje (komentar) svake linije koda navedenog programa? Što u svakoj liniji se izvršava? Kapiraš?
Hvala u svakom slučaju.
 
Odgovor na temu

Shadowed
Vojvodina

Član broj: 649
Poruke: 12851



+4784 Profil

icon Re: HELP! Trebam ispisati komentare koda!07.04.2008. u 23:18 - pre 195 meseci
Predraze, ma pusti, hoce da mu neko to uradi. Hajd' neka mu tema, mozda neko bude imao volje.
 
Odgovor na temu

[es] :: .NET :: HELP! Trebam ispisati komentare koda!

[ Pregleda: 1943 | Odgovora: 3 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.