Click here to Skip to main content
15,912,756 members
Home / Discussions / C#
   

C#

 
GeneralLetting a user choose a file for renaming Pin
scotlandc13-Oct-04 5:21
scotlandc13-Oct-04 5:21 
GeneralRe: Letting a user choose a file for renaming Pin
yoaz13-Oct-04 6:22
yoaz13-Oct-04 6:22 
GeneralRe: Letting a user choose a file for renaming Pin
scotlandc14-Oct-04 5:43
scotlandc14-Oct-04 5:43 
GeneralNeed help to: Read binary file into a struct Pin
Gywox13-Oct-04 5:07
Gywox13-Oct-04 5:07 
GeneralRe: Need help to: Read binary file into a struct Pin
Corinna John13-Oct-04 6:14
Corinna John13-Oct-04 6:14 
GeneralGet property Pin
bbp00613-Oct-04 4:48
bbp00613-Oct-04 4:48 
GeneralRe: Get property Pin
Colin Angus Mackay13-Oct-04 5:22
Colin Angus Mackay13-Oct-04 5:22 
GeneralRe: Get property Pin
Corinna John13-Oct-04 5:56
Corinna John13-Oct-04 5:56 
You can't protect the object itself, but you can return a copy:
<br />
private Something s;<br />
public Something S{<br />
  get{ return s.Clone(); }<br />
}<br />


For a Hashtable, you have to copy the content yourself. Hashtable.Clone() return only a flat copy. Frown | :(
<br />
public Hashtable Table{<br />
get{<br />
Hashtable htCopy = new Hashtable(ht.Count);<br />
foreach(object key in ht.Keys){<br />
htCopy.add(key, ht[key].Clone());<br />
}<br />
return htCopy;<br />
}<br />

GeneralJOIN Pin
pat27088113-Oct-04 4:41
pat27088113-Oct-04 4:41 
GeneralRe: JOIN Pin
Colin Angus Mackay13-Oct-04 5:27
Colin Angus Mackay13-Oct-04 5:27 
GeneralRe: JOIN Pin
pat27088113-Oct-04 5:49
pat27088113-Oct-04 5:49 
GeneralTab Pane Pin
mathon13-Oct-04 4:16
mathon13-Oct-04 4:16 
GeneralRe: Tab Pane Pin
mathon13-Oct-04 4:17
mathon13-Oct-04 4:17 
GeneralRe: Tab Pane Pin
pat27088113-Oct-04 7:19
pat27088113-Oct-04 7:19 
GeneralRe: Tab Pane Pin
J4amieC13-Oct-04 7:50
J4amieC13-Oct-04 7:50 
GeneralRe: Tab Pane Pin
pat27088113-Oct-04 8:21
pat27088113-Oct-04 8:21 
GeneralRe: Tab Pane Pin
Dave Kreskowiak13-Oct-04 9:29
mveDave Kreskowiak13-Oct-04 9:29 
GeneralSomeone please bail me out.... Pin
Vodstok13-Oct-04 3:58
Vodstok13-Oct-04 3:58 
GeneralRe: Someone please bail me out.... Pin
benjymous13-Oct-04 5:10
benjymous13-Oct-04 5:10 
GeneralRe: Someone please bail me out.... Pin
Vodstok13-Oct-04 6:30
Vodstok13-Oct-04 6:30 
GeneralRe: Someone please bail me out.... Pin
J4amieC13-Oct-04 7:47
J4amieC13-Oct-04 7:47 
GeneralRe: Someone please bail me out.... Pin
Vodstok13-Oct-04 8:25
Vodstok13-Oct-04 8:25 
GeneralRe: Someone please bail me out.... Pin
benjymous13-Oct-04 20:52
benjymous13-Oct-04 20:52 
Generalproblem with measureString in textBox Pin
shimritb13-Oct-04 3:40
shimritb13-Oct-04 3:40 
GeneralForm Causesvalidation property Pin
Zapss13-Oct-04 3:10
Zapss13-Oct-04 3:10 

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.