Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Favorite Forums
Member Avatar for surajrai

Hi, I am trying to put a dll to GAC. The assembly is signed. 1.I tried draging and droping (nothing happens) 2. I tried command gacutil /i abc.dll, from visual studio command prompt. It says Assembly successfully added to the cache but when I open windows\Assembly folder, I cant see …

Member Avatar for Momerath
0
268
Member Avatar for surajrai

hi, I have two class say class A and class B. Now the methods in class B are used only by class A. When I checked class B, I found that few methods are static and few methods are internal. Can you sugest me is it fine ? Or since …

Member Avatar for skatamatic
0
236
Member Avatar for surajrai

I have a method that returns void. say: Public void CreateRectangle(double z, double y, IRectangle rectObj) { Vector3d recPos1 = new Vector3d() recPos1.X = 0; recPos1.Y = some double vale; Vector3d recPos2 = new Vector3d() recPos2.X = some double value; recPos2.Y = 0; rectObj.SetVectors(recPos1, recPos2); } now, in my unit …

Member Avatar for thines01
0
515
Member Avatar for surajrai

Hi, I am working on a component based application. I have a method that does some calculation and returns nothing. say: public void DoSomething(int x, int y) { // do something } How to write testing for it. I can pass some dummy x,y values. But how and what we …

Member Avatar for cale.macdonald
0
234
Member Avatar for surajrai

Hi, I have seen in couple of places the code where ToString() method has been overriden. Like : class Employee : IComparable<Employee> { public int Salary { get; set; } public string Name { get; set; } public int CompareTo(Employee other) { if (this.Salary == other.Salary) { return this.Name.CompareTo(other.Name); } …

Member Avatar for darkagn
0
544
Member Avatar for galhajaj

Hi :) i am creating a game in C# the game contain a lot of windows and views i heard about mvvm & mvc design pattern but when i search for them i get only things that relative to asp & wpf... and those are (if i dont get it …

Member Avatar for surajrai
0
287
Member Avatar for Lotus_2011

Hi I wanna to ask about siverlight question.How to save pdf document in wcf (ServerSide).

Member Avatar for surajrai
0
84
Member Avatar for surajrai

Hello, I am going through few documents of my new project. It says it is a AT.NET (AT = Application template) based application. The architecture the project seems to be very complex and its a 7 year old product and still new developements are going on. Can anyone explain what …

0
118
Member Avatar for surajrai

Hi, We have an 7 year old application which is in the maintainance phase. I have recently joined the project and I keep hearing "backward compatibility of inteface". Can someone explain to me with an example what does this means? Thank you. Regards

Member Avatar for surajrai
0
180
Member Avatar for surajrai

Hi All, I am trying to understand shift operator which is used in my project. What I came to know from google is that Bit shifting allows for compact storage of similar data as a single integral value. But how does that work. and what is the advantage. Can you …

Member Avatar for Narue
0
309
Member Avatar for surajrai

Hi, Can you give some practical example of association, aggregation and composition which will make this understandable. regards,

Member Avatar for abhisinghstudy
0
150
Member Avatar for surajrai

Hello , I need an approach for my new assignment.Thought a lot but could'nt find an approach so posting it in this site hoping that someone might have come accross this situation and can suggest me something :-) I have a console application that downloads images from IP cameras (say …

Member Avatar for sknake
0
392
Member Avatar for surajrai

Hi, I have to do multithreading. In my case each thread should run in a specified timer interval given in a database. I tried a sample by storing the data in an xml file and reading them with linq to xml. But it seems all the thread takes the last …

Member Avatar for sknake
0
333
Member Avatar for surajrai

hi, I have a linq query which fetches a collection of datas. I want to do some functionality with each collection of data. I am not getting how to pass var object to a thread. My linq to xml query looks like this: XDocument readStorelist = LoadData(); var searchResult = …

Member Avatar for apegram
0
138