Actually, yesterday I attended an intrview..in that they asked 1 question about strong name..I can't able to guess what it is?.pls explain about this..thanks.
I can't seem to find any strong .Net developers who are the kind of guys that love technology and blogging etc.
Are you guys out there? If so i have a client in the e-commerce sector looking.
Give me a call if you want to know more, 0207 333 2637
Is it possible for one to check the strong name of a .NET application that is already currently running separately from your own running applications process?
Hello All,
I need some expert advice on strong typed data sets in ADO.NET that are generated by the Visual Studio. Here are the details. Thank you in advance.
I want to write a N-tier application where Presentation layer is in C#/windows forms, Business Layer is a Web service and Data Access Layer is SQL db.
So, I used Visual Studio 2005 for…
Hi guys,
I have struggled for so long to find a compelling use case for workflow (ie: WF) as against regular imperative programming. Each time I fall back to the conclusion that I should just leave WF out or defer getting into it until later. But I keep having this nagging feeling that there's something am missing.
Does anyone know any book…
What is the best ORM db combination for simple data structures. That is data that contains names as identifiers and locations, but whose main interaction will be numerical data for times(sports durations), and currency related data.
I initially want to create a sports data base that will take names and statistics. Secondarily I plan to start…
I am using LINQ to SQL to create strongly typed objects in my project.
Let's say I have an object that is represented by a database table. This object has a "Current State" that is kept in an associative table.
I would like to make a single db call where I pull back the two tables joined but am unsure how I should be populating that…
When reading a Windows PE file directly, I can't seem to find the strong name of a delay signed assembly. I can get to the CLR Header and read all the CLR header entries including the flags and the StrongNameSignature field. Unfortunately in a delay signed assembly the StrongNameSignature is zeroed out. Is the information in the…
At http://blogs.msdn.com/vcblog/archive/2010/04/06/c-0x-core-language-features-in-vc10-the-table.aspx there is a table showing C++0x features that are implemented in 2010 RC. Among them are listed forwarding enums and strongly typed enums but they are listed as "partial". The main text of the article says that this means they are…
Well, I don't know if "strong naming" is the right term, but what I want to do is as follows.
Currently I use ConstructorArgument like e.g. this:
public class Ninja
{
private readonly IWeapon _weapon;
private readonly string _name;
public Ninja(string name, IWeapon weapon)
{
_weapon = weapon;
…
I have a strong type view of type
List<List<MyViewModelClass>>
The outer list will always have two lists of List<MyViewModelClass>. For each of the two outer lists I want to display a group of checkboxes. Each set can have an arbitrary number of choices.
My view model class looks similar to this:
public…
I have a news website and on most posts the first paragraph is in bold. Currently the authors are just using <strong> to bold the paragraph, would it be better from an SEO point of view to rather use a paragraph class that is styled with p.bold {font-weight:bold;} <p class="bold">.
Does <strong> on the first…
It's easy to accept that objects should be used in all layers except a layer nominated as a data layer. However, it's just as easy to end-up with an 'anaemic domain model' that is just an object representation of data with no real functionality ( http://martinfowler.com/bliki/AnemicDomainModel.html ).
However, using objects…
I am trying to use NAnt in order to compile and sign an assembly using the vbc compiler. I have a project set up and am able to successfully sign the assembly compiling with VS2010. When I try to sign it using the command line I get this error:
vbc : error BC30140: Error creating assembly manifest: Error signing assembly…
I had the code working for:
http://stackoverflow.com/questions/1930229/post-idictionary-back-to-mvc-model
I recently migrated to MVC2 and now all my collections/dictionaries are coming back null. I can't seem to find any information about what has changed in the new release to cause this.
Anyone know of something that…
Does anyone know of a sip softphone that can be controller by an API. Xlite can launch a call through command line interface, but thats pretty much it, preferably looking for something cheap, the voip SDKs iv seen are pretty expensive and i wouldn't have any knowledge of sip protocol or development.
Hello,
I've seen around the web the following regex
(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$
which validates only if the string:
* contain at least (1) upper case letter
* contain at least (1) lower case letter
* contain at least (1) number or special character
* contain at…
For example I have a string with markup (from html node):
hello, this is dog
"h<em>e<strong>llo, thi</strong>s i</em><strong>s d</strong>og"
What is the most correct way to find some words in it (let's say "hello" and "dog"), wrap them in a span (make a highlight) and save all…
i have seen many sites who claim to have bank grade security encription. if their web sites have been built with php what other forms of security can exist aside from using mysql_real_escape_string and a 128bit ssl encription?
I have a couple of simple forms that send an html-only email. Most clients (Gmail, Lotus Notes 8, hotmail/live, windows live mail, outlook express) receive the emails just fine, but Outlook 2007 does not.
The code looks like this:
$data="
<html>
<body>
…
I am getting values from a database and displaying in a table. Im trying to print the results as individual .
Im using the below javascript
<script type="text/javascript">
function print_parent(element)
{
element.parentNode.className = 'print';
window.print();
element.parentNode.className = '';
…
Note: I know <b> is presentational and <span style="font-weight:bold> is better way and <strong> and <em> for emphasis but my question is not regarding this.
Should we convert every <b> to <strong> blindly ? many people do this they think <b> is not good as per web…
I'm looking at implementing a messaging system in my entity component system. I've deduced that I can use an event / queue for passing messages, but right now, I just use a generic object and cast out the data I want. I also considered using a dictionary. I see a lot of information on this, but they all…
Don't confuse this with static vs. dynamic typing!
You all know JavaScripts/PHPs infamous type systems:
PHP example:
echo "123abc"+2; // 125 - the reason for this is explained
// in the PHP docs but still: This hurts
echo "4"+1; // 5 - Oh please
echo "ABC"*5; // 0 - WTF
…