Click here to Skip to main content
15,923,222 members
Home / Discussions / C#
   

C#

 
GeneralRe: Removing Termination Characters from string Pin
Darkman_nofear15-May-07 21:42
Darkman_nofear15-May-07 21:42 
GeneralRe: Removing Termination Characters from string Pin
skatzteyp15-May-07 21:49
skatzteyp15-May-07 21:49 
GeneralRe: Removing Termination Characters from string Pin
Guffa15-May-07 21:56
Guffa15-May-07 21:56 
QuestionMDI problem... Pin
Aint15-May-07 21:23
Aint15-May-07 21:23 
AnswerRe: MDI problem... Pin
Pete O'Hanlon15-May-07 22:52
mvePete O'Hanlon15-May-07 22:52 
Questionusercontrol in datagridview in windows form Pin
StuckAgain15-May-07 21:04
StuckAgain15-May-07 21:04 
QuestionGAC Assembly Pin
Rahul.RK15-May-07 21:01
Rahul.RK15-May-07 21:01 
AnswerRe: GAC Assembly Pin
IrfanHaleem15-May-07 22:57
IrfanHaleem15-May-07 22:57 
Ok by
default it always refers the latest one. But you want that it should actually use the older version.
You need to specify “bindingRedirect” in your config file. For instance
in the below case “ClassLibraryVersion” has two versions “1.1.1830.10493” and “1.0.1830.10461”
from which “1.1.1830.10493” is the recent version. But using the bindingRedirect we can specify
saying “1.0.1830.10461” is the new version. So the client will not use “1.1.1830.10493”.
<configuration>
<runtime>
<assemblybinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentassembly>
<assemblyidentity name="ClassLibraryVersion"
publickeytoken="b035c4774706cc72"
culture="neutral">
<bindingredirect oldversion="1.1.1830.10493"
newversion="1.0.1830.10461">




ok????
QuestionMath.Round() ambiguity problem Pin
Muammar©15-May-07 20:53
Muammar©15-May-07 20:53 
AnswerRe: Math.Round() ambiguity problem Pin
mike montagne15-May-07 21:16
mike montagne15-May-07 21:16 
GeneralRe: Math.Round() ambiguity problem Pin
Muammar©15-May-07 22:50
Muammar©15-May-07 22:50 
GeneralRe: Math.Round() ambiguity problem Pin
mike montagne16-May-07 6:30
mike montagne16-May-07 6:30 
Questiondouble to short? Pin
Muammar©15-May-07 20:49
Muammar©15-May-07 20:49 
AnswerRe: double to short? Pin
mike montagne15-May-07 21:13
mike montagne15-May-07 21:13 
GeneralRe: double to short? Pin
Luc Pattyn15-May-07 21:40
sitebuilderLuc Pattyn15-May-07 21:40 
GeneralRe: double to short? Pin
Guffa15-May-07 21:59
Guffa15-May-07 21:59 
GeneralRe: double to short? [modified] Pin
DavidNohejl16-May-07 0:04
DavidNohejl16-May-07 0:04 
GeneralRe: double to short? Pin
PIEBALDconsult17-May-07 9:26
mvePIEBALDconsult17-May-07 9:26 
GeneralRe: double to short? Pin
DavidNohejl17-May-07 9:48
DavidNohejl17-May-07 9:48 
GeneralRe: double to short? Pin
Muammar©15-May-07 22:49
Muammar©15-May-07 22:49 
QuestionRetrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005 Pin
Farhan Ali15-May-07 20:25
Farhan Ali15-May-07 20:25 
AnswerRe: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80070005 Pin
DavidNohejl16-May-07 0:16
DavidNohejl16-May-07 0:16 
QuestionConfused with object assignment [modified] Pin
Rahul8315-May-07 20:19
Rahul8315-May-07 20:19 
AnswerRe: Confused with object assignment Pin
Muammar©15-May-07 20:45
Muammar©15-May-07 20:45 
GeneralRe: Confused with object assignment Pin
Rahul8315-May-07 20:55
Rahul8315-May-07 20:55 

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.