Click here to Skip to main content
15,879,096 members
Home / Discussions / C#
   

C#

 
GeneralRe: ContextMenu on a MenuItem in ContextMenu possible in WPF? Pin
User 1106097918-Jul-16 1:28
User 1106097918-Jul-16 1:28 
GeneralRe: ContextMenu on a MenuItem in ContextMenu possible in WPF? Pin
Imagiv18-Jul-16 2:02
Imagiv18-Jul-16 2:02 
GeneralRe: ContextMenu on a MenuItem in ContextMenu possible in WPF? Pin
Pete O'Hanlon18-Jul-16 2:18
mvePete O'Hanlon18-Jul-16 2:18 
AnswerRe: ContextMenu on a MenuItem in ContextMenu possible in WPF? Pin
Mycroft Holmes16-Jul-16 13:43
professionalMycroft Holmes16-Jul-16 13:43 
Questionno parameterless constructor defined for this object Pin
Gilbert Consellado15-Jul-16 17:36
professionalGilbert Consellado15-Jul-16 17:36 
AnswerRe: no parameterless constructor defined for this object Pin
OriginalGriff15-Jul-16 20:04
mveOriginalGriff15-Jul-16 20:04 
GeneralRe: no parameterless constructor defined for this object Pin
Gilbert Consellado16-Jul-16 0:49
professionalGilbert Consellado16-Jul-16 0:49 
GeneralRe: no parameterless constructor defined for this object Pin
OriginalGriff16-Jul-16 1:48
mveOriginalGriff16-Jul-16 1:48 
If I try to duplicate what you have:
C#
    Dictionary<int, MemoryStream> dictionary = new Dictionary<int, MemoryStream>();
    var classObject = new ClassObject("hello");
    int id = 666;
    dictionary.Add(id, new MemoryStream());
    var retriveObject = dictionary[id] as ClassObject;
    }


public class ClassObject : MemoryStream
    {
    public ClassObject(string s) { }
    }
I don't get an error - I do get a null value, but that's what I expect.

So how is my code different from yours?
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: no parameterless constructor defined for this object Pin
Gilbert Consellado16-Jul-16 4:00
professionalGilbert Consellado16-Jul-16 4:00 
GeneralRe: no parameterless constructor defined for this object Pin
OriginalGriff16-Jul-16 4:05
mveOriginalGriff16-Jul-16 4:05 
GeneralRe: no parameterless constructor defined for this object Pin
Gilbert Consellado16-Jul-16 4:30
professionalGilbert Consellado16-Jul-16 4:30 
GeneralRe: no parameterless constructor defined for this object Pin
OriginalGriff16-Jul-16 4:35
mveOriginalGriff16-Jul-16 4:35 
AnswerRe: no parameterless constructor defined for this object Pin
Imagiv16-Jul-16 4:13
Imagiv16-Jul-16 4:13 
GeneralRe: no parameterless constructor defined for this object Pin
Gilbert Consellado16-Jul-16 4:43
professionalGilbert Consellado16-Jul-16 4:43 
QuestionHow to load form's content (Controls in form) from XML file Pin
HoaiTamAnh15-Jul-16 15:50
HoaiTamAnh15-Jul-16 15:50 
AnswerRe: How to load form's content (Controls in form) from XML file Pin
Richard MacCutchan15-Jul-16 21:48
mveRichard MacCutchan15-Jul-16 21:48 
AnswerRe: How to load form's content (Controls in form) from XML file Pin
BillWoodruff16-Jul-16 2:34
professionalBillWoodruff16-Jul-16 2:34 
QuestionManually linking in references Pin
TheOnlyRealTodd14-Jul-16 23:33
professionalTheOnlyRealTodd14-Jul-16 23:33 
AnswerRe: Manually linking in references Pin
OriginalGriff14-Jul-16 23:45
mveOriginalGriff14-Jul-16 23:45 
AnswerRe: Manually linking in references Pin
Eddy Vluggen14-Jul-16 23:58
professionalEddy Vluggen14-Jul-16 23:58 
SuggestionRe: Manually linking in references Pin
maverick199115-Jul-16 22:30
professionalmaverick199115-Jul-16 22:30 
QuestionPassing Memory Stream between C# Windows Pin
sunsher14-Jul-16 18:02
sunsher14-Jul-16 18:02 
AnswerRe: Passing Memory Stream between C# Windows Pin
Mycroft Holmes14-Jul-16 20:11
professionalMycroft Holmes14-Jul-16 20:11 
AnswerRe: Passing Memory Stream between C# Windows Pin
Pete O'Hanlon14-Jul-16 20:46
mvePete O'Hanlon14-Jul-16 20:46 
GeneralRe: Passing Memory Stream between C# Windows Pin
sunsher17-Jul-16 13:04
sunsher17-Jul-16 13:04 

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.