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

C#

 
AnswerRe: User Redirect To the login page after the idle time it reaches Pin
Sandeep Mewara15-May-12 20:49
mveSandeep Mewara15-May-12 20:49 
GeneralRe: User Redirect To the login page after the idle time it reaches Pin
Mycroft Holmes15-May-12 21:18
professionalMycroft Holmes15-May-12 21:18 
JokeRe: User Redirect To the login page after the idle time it reaches Pin
Peter_in_278015-May-12 21:44
professionalPeter_in_278015-May-12 21:44 
GeneralRe: User Redirect To the login page after the idle time it reaches Pin
Mycroft Holmes15-May-12 22:14
professionalMycroft Holmes15-May-12 22:14 
GeneralRe: User Redirect To the login page after the idle time it reaches Pin
Sandeep Mewara15-May-12 22:03
mveSandeep Mewara15-May-12 22:03 
Questionconvert XML to datatable + C# Pin
jojoba201115-May-12 18:47
jojoba201115-May-12 18:47 
QuestionBig Number Pin
BobInNJ15-May-12 10:26
BobInNJ15-May-12 10:26 
AnswerRe: Big Number Pin
Luc Pattyn15-May-12 11:13
sitebuilderLuc Pattyn15-May-12 11:13 
That bizarre message is what one gets when compiling with an old .NET version. BigInteger type got introduced in .NET 4.0, hence this
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;

namespace ConsoleApplication1 {
    class Program {
        static void Main(string[] args) {
            BigInteger a = 12;
            Console.WriteLine("a=" + a);
            Console.ReadKey();
        }
    }
}


works just fine on Visual Studio 10, targetting .NET 4.0

Please note the extra s in the using statement.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

GeneralRe: Big Number Pin
BobInNJ15-May-12 12:08
BobInNJ15-May-12 12:08 
AnswerRe: Big Number Pin
Luc Pattyn15-May-12 12:21
sitebuilderLuc Pattyn15-May-12 12:21 
GeneralRe: Big Number Pin
BobInNJ15-May-12 13:08
BobInNJ15-May-12 13:08 
AnswerRe: Big Number Pin
Luc Pattyn15-May-12 13:16
sitebuilderLuc Pattyn15-May-12 13:16 
QuestionSkipping locked section already in use Pin
varunpandeyengg15-May-12 5:41
varunpandeyengg15-May-12 5:41 
GeneralRe: Skipping locked section already in use PinPopular
PIEBALDconsult15-May-12 5:58
mvePIEBALDconsult15-May-12 5:58 
GeneralRe: Skipping locked section already in use Pin
varunpandeyengg15-May-12 6:13
varunpandeyengg15-May-12 6:13 
GeneralRe: Skipping locked section already in use Pin
PIEBALDconsult15-May-12 6:29
mvePIEBALDconsult15-May-12 6:29 
GeneralRe: Skipping locked section already in use Pin
Sentenryu15-May-12 7:33
Sentenryu15-May-12 7:33 
GeneralRe: Skipping locked section already in use Pin
PIEBALDconsult15-May-12 7:51
mvePIEBALDconsult15-May-12 7:51 
GeneralRe: Skipping locked section already in use Pin
Sentenryu15-May-12 8:19
Sentenryu15-May-12 8:19 
GeneralRe: Skipping locked section already in use Pin
jschell15-May-12 8:56
jschell15-May-12 8:56 
GeneralRe: Skipping locked section already in use Pin
PIEBALDconsult15-May-12 9:11
mvePIEBALDconsult15-May-12 9:11 
GeneralRe: Skipping locked section already in use Pin
Sentenryu15-May-12 9:34
Sentenryu15-May-12 9:34 
GeneralRe: Skipping locked section already in use Pin
PIEBALDconsult15-May-12 9:50
mvePIEBALDconsult15-May-12 9:50 
GeneralRe: Skipping locked section already in use Pin
Sentenryu16-May-12 0:29
Sentenryu16-May-12 0:29 
AnswerRe: Skipping locked section already in use Pin
Ravi Bhavnani15-May-12 11:36
professionalRavi Bhavnani15-May-12 11:36 

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.