Click here to Skip to main content
15,885,720 members
Home / Discussions / C#
   

C#

 
GeneralRe: log4net on Windows 7 Pin
jschell6-Jan-13 4:45
jschell6-Jan-13 4:45 
QuestionC# Equivalent of a Vlookup Pin
Member 97041533-Jan-13 22:00
Member 97041533-Jan-13 22:00 
AnswerRe: C# Equivalent of a Vlookup Pin
nainakarri4-Jan-13 0:55
nainakarri4-Jan-13 0:55 
GeneralRe: C# Equivalent of a Vlookup Pin
Member 97041534-Jan-13 1:38
Member 97041534-Jan-13 1:38 
GeneralRe: C# Equivalent of a Vlookup Pin
nainakarri4-Jan-13 20:22
nainakarri4-Jan-13 20:22 
QuestionXML Mapping to CSV Pin
RickSharp3-Jan-13 11:32
RickSharp3-Jan-13 11:32 
AnswerRe: XML Mapping to CSV Pin
David C# Hobbyist.3-Jan-13 11:58
professionalDavid C# Hobbyist.3-Jan-13 11:58 
GeneralRe: XML Mapping to CSV Pin
RickSharp3-Jan-13 13:01
RickSharp3-Jan-13 13:01 
Actually this might be more what I'm looking for:

C#
public class WireEntry
{
    public String Name { get; set; }
    public String Number { get; set; }
    public String BankName { get; set; }
    public String ClosingNo { get; set; }

    public WireEntry()
    {
    }
}


foreach (DataRow row in ds.Tables["Loan"].Rows)
        {

            // Enter into result set

            WireEntry newEntry = new WireEntry();
            newEntry.Name = row["Name"].ToString();
            newEntry.Number = row["Number"].ToString();
            newEntry.BankName = row["BankName"].ToString();

            result.Add(newEntry);

        }

        return result;

GeneralRe: XML Mapping to CSV Pin
David C# Hobbyist.3-Jan-13 13:17
professionalDavid C# Hobbyist.3-Jan-13 13:17 
AnswerRe: XML Mapping to CSV Pin
PIEBALDconsult3-Jan-13 14:07
mvePIEBALDconsult3-Jan-13 14:07 
GeneralRe: XML Mapping to CSV Pin
RickSharp4-Jan-13 6:05
RickSharp4-Jan-13 6:05 
GeneralRe: XML Mapping to CSV Pin
PIEBALDconsult4-Jan-13 10:46
mvePIEBALDconsult4-Jan-13 10:46 
GeneralRe: XML Mapping to CSV Pin
RickSharp4-Jan-13 13:22
RickSharp4-Jan-13 13:22 
GeneralRe: XML Mapping to CSV Pin
jschell4-Jan-13 14:12
jschell4-Jan-13 14:12 
AnswerRe: XML Mapping to CSV Pin
jschell4-Jan-13 14:11
jschell4-Jan-13 14:11 
Questionhow to setup that form in the tabpage when tabpage resized Pin
linuxaidtest3-Jan-13 3:47
linuxaidtest3-Jan-13 3:47 
AnswerRe: how to setup that form in the tabpage when tabpage resized Pin
BillWoodruff3-Jan-13 16:42
professionalBillWoodruff3-Jan-13 16:42 
QuestionReading Excel from different processes in different computer Pin
SaneLucky3-Jan-13 2:58
SaneLucky3-Jan-13 2:58 
AnswerRe: Reading Excel from different processes in different computer Pin
Super Lloyd3-Jan-13 17:55
Super Lloyd3-Jan-13 17:55 
AnswerRe: Reading Excel from different processes in different computer Pin
April Fans3-Jan-13 19:33
April Fans3-Jan-13 19:33 
AnswerRe: Reading Excel from different processes in different computer Pin
micke.andersson28-Jan-13 4:45
micke.andersson28-Jan-13 4:45 
QuestionKeyValuePair from reference dll Pin
Isaksson3-Jan-13 1:52
Isaksson3-Jan-13 1:52 
AnswerRe: KeyValuePair from reference dll Pin
Super Lloyd3-Jan-13 17:51
Super Lloyd3-Jan-13 17:51 
GeneralRe: KeyValuePair from reference dll Pin
Isaksson3-Jan-13 21:14
Isaksson3-Jan-13 21:14 
GeneralRe: KeyValuePair from reference dll Pin
Super Lloyd3-Jan-13 22:48
Super Lloyd3-Jan-13 22:48 

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.