Click here to Skip to main content
15,910,130 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to convert ... Pin
Pete O'Hanlon3-Dec-13 19:26
mvePete O'Hanlon3-Dec-13 19:26 
AnswerRe: How to convert ... Pin
-*-Star-*-6-Dec-13 0:51
-*-Star-*-6-Dec-13 0:51 
GeneralRe: How to convert ... Pin
Pete O'Hanlon6-Dec-13 0:54
mvePete O'Hanlon6-Dec-13 0:54 
QuestionFind examples MDI Parent Child Form Load as shown in Figure Pin
Member 24584673-Dec-13 17:47
Member 24584673-Dec-13 17:47 
AnswerRe: Find examples MDI Parent Child Form Load as shown in Figure Pin
Dave Kreskowiak3-Dec-13 18:16
mveDave Kreskowiak3-Dec-13 18:16 
GeneralRe: Find examples MDI Parent Child Form Load as shown in Figure Pin
Member 24584674-Dec-13 21:57
Member 24584674-Dec-13 21:57 
GeneralRe: Find examples MDI Parent Child Form Load as shown in Figure Pin
Dave Kreskowiak5-Dec-13 2:43
mveDave Kreskowiak5-Dec-13 2:43 
AnswerRe: Find examples MDI Parent Child Form Load as shown in Figure Pin
WuRunZhe6-Dec-13 14:38
WuRunZhe6-Dec-13 14:38 
GeneralRe: Find examples MDI Parent Child Form Load as shown in Figure Pin
Member 24584678-Dec-13 17:58
Member 24584678-Dec-13 17:58 
Questionmodel popup extender is not displaying but it gets call from code behind Pin
Member 104297953-Dec-13 0:29
Member 104297953-Dec-13 0:29 
AnswerMessage Removed Pin
3-Dec-13 9:44
professionalN_tro_P3-Dec-13 9:44 
SuggestionRe: model popup extender is not displaying but it gets call from code behind Pin
Richard MacCutchan3-Dec-13 10:36
mveRichard MacCutchan3-Dec-13 10:36 
Questionregarding sitemap functionality Pin
Omprakash Kukana2-Dec-13 18:06
Omprakash Kukana2-Dec-13 18:06 
GeneralRe: regarding sitemap functionality Pin
Richard MacCutchan2-Dec-13 21:15
mveRichard MacCutchan2-Dec-13 21:15 
Question[Solved] Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
emma.sun.sts1-Dec-13 21:24
emma.sun.sts1-Dec-13 21:24 
AnswerRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
GuyThiebaut1-Dec-13 21:43
professionalGuyThiebaut1-Dec-13 21:43 
AnswerRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
Mycroft Holmes1-Dec-13 21:51
professionalMycroft Holmes1-Dec-13 21:51 
GeneralRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
emma.sun.sts1-Dec-13 21:59
emma.sun.sts1-Dec-13 21:59 
GeneralRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
GuyThiebaut1-Dec-13 22:24
professionalGuyThiebaut1-Dec-13 22:24 
GeneralRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
emma.sun.sts4-Dec-13 15:28
emma.sun.sts4-Dec-13 15:28 
AnswerRe: Date is displayed as 41606.4350485301 and not 2013-11-28 10:20:30.783 ! Pin
Richard MacCutchan1-Dec-13 23:46
mveRichard MacCutchan1-Dec-13 23:46 
QuestionProblem resolving namespace Pin
mirdana1-Dec-13 21:06
mirdana1-Dec-13 21:06 
I'm working on a project and there is 2 classes named 'Utility' & 'ServerUtils' both static and in the same namespace but in separate files.

C#
namespace HeadName.ProcessFiles
{
    public static class ServerUtils
    {
    }
}


C#
namespace HeadName.ProcessFiles
{
    public static class Utility
    {
    }
}


now assume that there is two another classes which need to use 'utility' & 'ServerUtils'.

C#
namespace HeadName.ProcessFile.Rating
{
    public class Calculator
    {
    }
}


C#
namespace HeadName.ProcessFile.Rating
{
    public class Server
    {
    }
}


Problem was just here, VS didn't show the Utility class when i
type "HeadName.ProcessFile." but ServerUtils was there. not only on my pc...

when i complete the code by hand IDE draw a red line under it saying there is not such thing. i decide to compile and see what will happen. no compile error.Confused | :confused: . i add a number to the end of class's name to be sure and compiler show error. so this is about IDE not my code. after some works my colleage deletes user file near project file, Prblem solved. but on my pc there was none and we think deleting .suo file near solution file may help and it did work.
the question is why? and what is this? did i do something wrong or it's VS problem.

bad english, I know Smile | :)
AnswerRe: Problem resolving namespace Pin
Sampath Sridhar1-Dec-13 22:16
Sampath Sridhar1-Dec-13 22:16 
AnswerRe: Problem resolving namespace Pin
Nicholas Marty1-Dec-13 23:42
professionalNicholas Marty1-Dec-13 23:42 
AnswerRe: Problem resolving namespace Pin
BillWoodruff1-Dec-13 23:53
professionalBillWoodruff1-Dec-13 23:53 

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.