Click here to Skip to main content
15,906,094 members
Home / Discussions / C#
   

C#

 
GeneralRe: Reading standardoutput to a file Pin
svanwass5-May-10 6:46
svanwass5-May-10 6:46 
QuestionASP.Net MVC2 for VS 2010 Pin
Darrall4-May-10 9:27
Darrall4-May-10 9:27 
AnswerRe: ASP.Net MVC2 for VS 2010 Pin
hammerstein054-May-10 11:32
hammerstein054-May-10 11:32 
GeneralRe: ASP.Net MVC2 for VS 2010 Pin
Darrall4-May-10 13:00
Darrall4-May-10 13:00 
AnswerRe: ASP.Net MVC2 for VS 2010 Pin
justinonday19-Oct-10 23:06
justinonday19-Oct-10 23:06 
QuestionNeed help in updating an Image datatype in SQL Server Pin
mike_electron4-May-10 8:02
mike_electron4-May-10 8:02 
AnswerRe: Need help in updating an Image datatype in SQL Server Pin
T M Gray4-May-10 8:14
T M Gray4-May-10 8:14 
QuestionC# Write a embedded resource in a folder (Visual Studio) Pin
DJ-Boris4-May-10 7:59
DJ-Boris4-May-10 7:59 
AnswerRe: C# Write a embedded resource in a folder (Visual Studio) Pin
Eddy Vluggen4-May-10 8:25
professionalEddy Vluggen4-May-10 8:25 
GeneralRe: C# Write a embedded resource in a folder (Visual Studio) Pin
DJ-Boris5-May-10 1:33
DJ-Boris5-May-10 1:33 
QuestionRomote database .mdf string connection Pin
Tunisien864-May-10 6:35
Tunisien864-May-10 6:35 
AnswerRe: Romote database .mdf string connection Pin
ragnaroknrol4-May-10 8:01
ragnaroknrol4-May-10 8:01 
QuestionChanging the cursor mode Pin
v17.poornima4-May-10 6:13
v17.poornima4-May-10 6:13 
AnswerRe: Changing the cursor mode Pin
Eddy Vluggen4-May-10 8:23
professionalEddy Vluggen4-May-10 8:23 
GeneralRe: Changing the cursor mode Pin
v17.poornima7-May-10 0:51
v17.poornima7-May-10 0:51 
GeneralRe: Changing the cursor mode Pin
Eddy Vluggen7-May-10 0:55
professionalEddy Vluggen7-May-10 0:55 
Question.NET 2.0 control is not shown up un VS 2010 toolbox Pin
Nadia Monalisa4-May-10 5:38
Nadia Monalisa4-May-10 5:38 
QuestionAudio CD Ripper Pin
anishkannan3-May-10 23:27
anishkannan3-May-10 23:27 
AnswerRe: Audio CD Ripper Pin
T M Gray4-May-10 8:23
T M Gray4-May-10 8:23 
Questiondictionary Pin
toto_20103-May-10 23:09
toto_20103-May-10 23:09 
AnswerRe: dictionary Pin
#realJSOP3-May-10 23:14
professional#realJSOP3-May-10 23:14 
GeneralRe: dictionary Pin
toto_20103-May-10 23:29
toto_20103-May-10 23:29 
I have classe collectionusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DLLDOpacimeter
{
public class CLing
{
private string codemess;
private string format;
private string unite;
private string taile;
private string designtion;
private string obligatoir;
private bool m_isrequird;
private string valeur;
private string CRccalcule;
private string CRcdonne;
private string correct;



public CLing(string code, string forma, string unite, string taile, string desingnation, string obligatoi, string valeur1, string CRccalcul, string CRcdonn, string correct, bool m_isrequir)
{
this.codemess = code;
this.format = forma;
this.unite = unite;
this.taile = taile;
this.designtion = desingnation;
this.obligatoir = obligatoi;
this.valeur = valeur1;
this.CRccalcule = CRccalcul;
this.CRcdonne = CRcdonn;
this.correct = correct;
this.m_isrequird = m_isrequir;


}

public bool _minrequird
{
get { return m_isrequird; }
set { m_isrequird = value; }
}
public string _valeur
{
get { return valeur; }
set { valeur = value; }
}

public string _CRccalcule
{
get { return CRccalcule; }
set { CRccalcule = valeur; }
}

public string _CRcdonn
{
get { return CRcdonne; }
set { CRcdonne = value; }

}

public string _correct
{
get { return correct; }
set { correct = value; }
}

public string _codemess
{
get { return codemess; }
set {codemess =value ;}

}
public string _format
{
get { return format; }
set { format = value; }
}
public string _unite
{
get { return unite; }
set { unite = value; }
}
public string _taile
{
get { return taile; }
set { taile = value; }
}
public string _designtion
{
get { return designtion; }
set {designtion = value ;}
}

public string _obligatoir
{
get { return obligatoir; }

set { obligatoir = value; }

}

}
}

and
this class heritage from class CLing
sing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DLLDOpacimeter
{
public class Clfichier

{
Dictionary<string, CLing> ling = new Dictionary<string, CLing>();


public void CRC()
{
//code
}


}
}
//CRC is Error control
GeneralRe: dictionary Pin
#realJSOP4-May-10 0:08
professional#realJSOP4-May-10 0:08 
GeneralRe: dictionary Pin
harold aptroot4-May-10 0:30
harold aptroot4-May-10 0:30 
GeneralRe: dictionary Pin
Henry Minute4-May-10 2:51
Henry Minute4-May-10 2:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.