Such a great blog , which is shared by you !! one of the best thing unique and informative !! Keep Sharing !! This is great for the college going student as well professional !!
Again I will want to say !! Keep Sharing !!
I have a .net training link !! visit here !! http://www.cetpainfotech.com/technology/Dot-net-training
Hi,
I am experimenting a parallel processing task, running threads in different processors. I used your code and need to return a value as given in following code
I have a business layer between the data layer and UI layer. How can I achieve this? And ideally, we shouldn't be passing the Data Entities to the UI layer. So what is the way to move the ASP.NET Identity classes to Data Layer so that we can have a single myDbContext and allows for foreign key linking of the User tables with Application tables with Code first approach?
May I ask a question? I don't understand what the "ThreadProc" variable is. Can you please clarify? My understanding is that I need to execute the code immediately after your code, i.e.
Thank you very much. You just saved my life giving me the hind regarding bindingNamespace. I already spend the whole day investigating how to get rid of the extra import line having tempuri.org. That was driving me nuts! Again, thanks a ton!
In order to choose the processor by number, the following change need to be done:
public int ProcessorAffinity
{
get { return this._processorAffinity; }
set
{
int affinity = 1 << value - 1;
this._processorAffinity = affinity;
}
}
PS. please delete my previous comment
In order to choose the processor by number, the following change need to be done:
public int ProcessorAffinity
{
get { return this._processorAffinity; }
set {
int affinity = 1 << value;
this._processorAffinity = value;
}
}
Error 370 An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type E:\NOVACRM_R2\NovatimeCRM\WebService\WebServiceLogin.asmx.cs 24 30 NovatimeCRM