Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

toto_2010

@toto_2010
About
Posts
35
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • variables
    T toto_2010

    when is that local variables are created and destroyed ,C#? thanks.

    C# csharp question

  • transmitted
    T toto_2010

    List the three ways that data can be transmitted within the parameters provide the associated keywords.in C# thank you.

    C# csharp

  • execution of a C # application
    T toto_2010

    thanks

    C# question

  • execution of a C # application
    T toto_2010

    pls which starts the execution of a C # application? thanks.

    C# question

  • Encoding
    T toto_2010

    can you give me just exemple code pls ,

    C#

  • Encoding
    T toto_2010

    I want to understand this code pls public GFile(string Filename) { string[] fileCtx = File.ReadAllLines(Filename, Encoding.Default); GLine gline; string[] tmpCtx; foreach (string line in fileCtx) { if (line.Contains(m_leftBracket) && line.Contains(m_rightBracket) && line != m_CRCHeader) m_Header = line; else if (line != m_CRCHeader) { tmpCtx = line.Split(new string[] { m_Equals }, StringSplitOptions.RemoveEmptyEntries); gline = new GLine(tmpCtx[0], tmpCtx[1]); if (ContainsKey(gline.Code)) this[gline.Code].CRCGiven = short.Parse(tmpCtx[1]); else Add(gline.Code, gline); } } }

    C#

  • folder
    T toto_2010

    I want to write a project in a folder how do that ? thanks for your idea.

    C# question

  • document code
    T toto_2010

    can you correct this document the code pls ,thanks namespace eControlCevertest.lib.Primitives {/// <summary> /// la class Gline est un class mere /// </summary> public sealed class GLine { #region Variables private bool m_IsDataCorrect; private LineDefinition m_ContentFormat; private short m_CRCComputed = -1, m_CRCGiven = -1; private string m_Code, m_Value; #endregion #region public Accessors /// <summary> /// Contient le Code de la donnée etdonne la v aleur, conformement au CDC GiEGLAN /// </summary> public string Code { get { return m_Code; } set { m_Code = value; } } public LineDefinition ContentFormat { get { return m_ContentFormat; } set { m_ContentFormat = value; } } /// <summary> /// Contient la valeur de la donnée et calcule le , /// </summary> public string Value { get { return m_Value; } set { m_Value = value; ComputeState(); } } public short CRCComputed { get { return m_CRCComputed; } } public short CRCGiven { get { return m_CRCGiven; } set { m_CRCGiven = value; ComputeState(); } } public bool IsDataCorrect { get { return m_CRCGiven != -1 && m_IsDataCorrect; } } /// <summary> /// /// </summary> public bool IsDefinitionAvailable { get { return m_ContentFormat != null; } } #endregion #region public non default Constructs /// <summary> // Constructeurs /// </summary> public GLine(string code, string value, short givencrc) { m_Code = code; m_Value = value; m_CRCGiven = givencrc; ComputeState(); } /// <summary> // Constructeurs . /// </summary>

    C#

  • dictionary
    T toto_2010

    ok thanks

    C# csharp

  • dictionary
    T toto_2010

    I want to fill in dictionary from table C# thank you for your idea .

    C# csharp

  • CRC error control
    T toto_2010

    I want to fill in dictionary from table C# thank you for your idea .

    C# csharp help

  • CRC error control
    T toto_2010

    I want to read file the colluction and add it in dictionary with key and value ,C# thanks.

    C# csharp help

  • dictionary
    T toto_2010

    I want to add in dictionary from class deriver

    C# csharp tutorial

  • dictionary
    T toto_2010

    I want to add in dictionary from class deriver .

    C# csharp tutorial

  • dictionary
    T toto_2010

    exactly but I want to read table from class CLing for Add to dictionary.

    C# csharp tutorial

  • dictionary
    T toto_2010

    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 {

    C# csharp tutorial

  • dictionary
    T toto_2010

    How to use a dictionary to read and write the object in File with C#. thanks.

    C# csharp tutorial

  • CopyFile
    T toto_2010

    I do that but no tchinge

    C# csharp question

  • CopyFile
    T toto_2010

    I working in solution vb.net for convert to C#. my question about this " CopyFile(My.Application.Info.DirectoryPath & "\Ids", "Z:\ID", 1)". wath the function for this and how do that in C#? . thnks

    C# csharp question

  • vb.net to c#
    T toto_2010

    how that ? can you explain about this . thank.

    C# csharp tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups