CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Genith

Search: Search took 0.02 seconds.

  1. Re: how to convert a string to date format?

    Thanks
  2. [RESOLVED] how to convert a string to date format?

    Hi All,

    I have a string like this '20051022'(YYYYMMDD). I want to convert into '10/22/2005'(MM/DD/YYYY). Can anybody suggest on this?

    Thanks in advance
  3. Replies
    1
    Views
    958

    Adding string to a instace

    Hi All,

    I have something like this..
    "[ c o d e ]"

    public class Student : ObservableObject
    {
    public string StudentName { get; set; }
    public string StudentType {...
  4. Thread: foreach loop

    by Genith
    Replies
    1
    Views
    1,149

    foreach loop

    Hi All,

    I have something like this..

    foreach(Location location in locationList)
    {
    studentList.Add(new StudentDataList() {Locationcode = location...
  5. Replies
    3
    Views
    1,479

    Re: if condition in foreach loop

    Thanks for the reply. There is no common pattern. In //Do something i need to turn on some Boolean properties. I looking for something in place of foreach loop.

    Thanks
  6. Replies
    3
    Views
    1,479

    if condition in foreach loop

    Hi all,

    I have something like this in my code..

    I have a Students list.

    foreach(var name in Students)
    {
    if(name.StudentName == "John")
    {
  7. Replies
    3
    Views
    591

    Re: Key from List of EnumeratedValues

    Hi Arjay,

    Here is my EnumeratedValue

    public class EnumeratedValue
    {

    public string ParentKey { get; set; }
    public string Value { get; set; }
    public string...
  8. Replies
    3
    Views
    591

    Key from List of EnumeratedValues

    Hi,

    I am beginner in c#. I have List of EnumeratedValues, I need to get the key and assign to some other string. Can anybody help me on this.

    Thanks,
    Genith
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured