active questions tagged c#4.0 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:06:19Zhttp://stackoverflow.com/feeds/tag/c#4.0http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value3Can I implement method_missing in C# 4 and have it actually return a value?ignu2008-11-12T05:57:46Z2009-12-07T02:42:28Z
<p>I was trying to figure out how to implement method_missing in C# 4, based on all of 2 blog posts floating around on IDynamicObject. </p>
<p>What I want to do is have a Business Logic Layer that has a Repository, and if the method is missing from the Business Logic Layer, just call the Repository and pass through its result. So i have a class that looks like this:</p>
<pre><code>public class CustomerServices : IDynamicObject
{
protected CustomerRepository _Repository = new CustomerRepository();
MetaObject IDynamicObject.GetMetaObject(Expression parameter)
{
return new RepositoryMetaObject<CustomerRepository>(_Repository, parameter);
}
}
</code></pre>
<p>In RepositoryMetaObect I implement the Call method like so:</p>
<pre><code> public override MetaObject Call(CallAction action, MetaObject[] args)
{
typeof(T).GetMethod(action.Name).Invoke(_Repository, getParameterArray(args));
return this;
}
</code></pre>
<p>(The rest of RepositoryMetaObject code probably isn't interesting, but I've included it here: <a href="http://pastie.org/312842" rel="nofollow">http://pastie.org/312842</a>)</p>
<p>The problem I think is that I'm never doing anything with the result of the Invoke, I'm just returning the MetaObject itself. </p>
<p>Now when I do this:</p>
<pre><code> dynamic service = new CustomerServices();
var myCustomer = service.GetByID(1);
</code></pre>
<p>GetByID is called, but if I try to access a property on myCustomer, is just hangs. </p>
<p>Can anyone please help?</p>
<p>Complete code can be downloaded ehre: https://dl.getdropbox.com/u/277640/BusinessLogicLayer.zip</p>
http://stackoverflow.com/questions/1842400/mocking-framework-with-c-4-0-support0Mocking Framework with C# 4.0 Support?jfar2009-12-03T19:44:26Z2009-12-03T19:48:47Z
<p>Anybody know of a mocking framework that supports C# 4.0? Doesn't matter which one ATM, just need something that will work.</p>
http://stackoverflow.com/questions/1640688/workflowelement-in-visual-studio-2010-beta-20WorkflowElement in Visual Studio 2010 Beta 2bannypotter2009-10-28T23:02:27Z2009-12-03T10:24:38Z
<p>I've downloaded beta 2 of visual studio and followed various tutorials (<a href="http://bloggersguides.net/media/p/188.aspx" rel="nofollow">http://bloggersguides.net/media/p/188.aspx</a>) regarding the creation of custom activities for Workflow. In all of the examples the activity appears to derive from WorkflowElement however it would appear not to exist in beta 2?</p>
<p>I also notice that you can't create a Sequential Workflow Console Application no longer exists in the project templates.</p>
<p>Any ideas where I could find an example on how to create a custom activity like the above tutorial but in beta 2?</p>
http://stackoverflow.com/questions/1835912/how-do-i-express-a-void-method-call-as-the-result-of-dynamicmetaobject-bindinvoke10How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?Jon Skeet2009-12-02T21:22:27Z2009-12-02T23:21:51Z
<p>I'm trying to give a short example of <a href="http://msdn.microsoft.com/en-us/library/system.dynamic.idynamicmetaobjectprovider%28VS.100%29.aspx" rel="nofollow"><code>IDynamicMetaObjectProvider</code></a> for the second edition of C# in Depth, and I'm running into issues.</p>
<p>I want to be able to express a void call, and I'm failing. I'm sure it's possible, because if I dynamically call a void method using the reflection binder, all is fine. Here's a short but complete example:</p>
<pre><code>using System;
using System.Dynamic;
using System.Linq.Expressions;
class DynamicDemo : IDynamicMetaObjectProvider
{
public DynamicMetaObject GetMetaObject(Expression expression)
{
return new MetaDemo(expression, this);
}
public void TestMethod(string name)
{
Console.WriteLine(name);
}
}
class MetaDemo : DynamicMetaObject
{
internal MetaDemo(Expression expression, DynamicDemo demo)
: base(expression, BindingRestrictions.Empty, demo)
{
}
public override DynamicMetaObject BindInvokeMember
(InvokeMemberBinder binder, DynamicMetaObject[] args)
{
Expression self = this.Expression;
Expression target = Expression.Call
(Expression.Convert(self, typeof(DynamicDemo)),
typeof(DynamicDemo).GetMethod("TestMethod"),
Expression.Constant(binder.Name));
var restrictions = BindingRestrictions.GetTypeRestriction
(self, typeof(DynamicDemo));
return new DynamicMetaObject(target, restrictions);
}
}
class Test
{
public void Foo()
{
}
static void Main()
{
dynamic x = new Test();
x.Foo(); // Works fine!
x = new DynamicDemo();
x.Foo(); // Throws
}
}
</code></pre>
<p>This throws an exception:</p>
<blockquote>
<p>Unhandled Exception:
System.InvalidCastException: The
result type 'System.Void' of the
dynamic binding produced by the object
with type 'DynamicDemo' for the binder
'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder'
is not compatible with the result type 'System.Object' expected by the
call site.</p>
</blockquote>
<p>If I change the method to return object and return null, it works fine... but I don't want the result to be null, I want it to be void. That works fine for the reflection binder (see the first call in Main) but it fails for my dynamic object. I want it to work like the reflection binder - it's fine to call the method, so long as you don't try to use the result.</p>
<p>Have I missed a particular kind of expression I can use as the target?</p>
http://stackoverflow.com/questions/1775102/converting-image-into-matrix-and-vice-versa0converting image into matrix and vice versa???ranzan2009-11-21T10:19:45Z2009-12-02T23:03:06Z
<p>Please tell me how to convert image into matrix of pixels and vice versa...using opencv??</p>
http://stackoverflow.com/questions/1827399/unit-testing-interface-contracts-in-c1Unit Testing interface contracts in C#Colin Desmond2009-12-01T16:40:17Z2009-12-02T10:31:38Z
<p>Using the Code Contracts tools available in VS2010 Beta 2, I have defined an interface, a contract class for that interface and two classes that implement the interface.</p>
<p>Now when I come to test the code, I want to test the implementation classes so I know that their functionality is correct and I want to test the contract code so I know that my conditions are correct.</p>
<p>I could test each contract statement in each of the 2 implementation classes, but that is clearly redundant. I could just write the tests on one of these implementation classes, but that seems a bit wrong, how to choose between them, remembering which one to update as you change the contracts etc.</p>
<p>I'd like to test the actual interface contract class, but get all sorts of compile time warnings that the interface method I want to test is not available on the interface contract class. I know that there is post-compilation magic happening to actually inject the contract code into my implementation classes (which I can see in ILDASM), but when I inspect the interface contract class methods, they are there in the MISL, but empty.</p>
<p>I am missing something, or is what I want to do just not possible. If it is not, what is the "best practice" for this?</p>
<p>===Edit===</p>
<p>One suggestion here is to implement the interface in a class (internal to the test assembly) whose purpose is solely to test the interface contracts, sound sensible?</p>
http://stackoverflow.com/questions/1829339/best-way-to-fade-in-out-image0Best way to fade in/out imagemofle2009-12-01T22:17:39Z2009-12-01T22:31:11Z
<p>What is the best (least resource heavy) way to fade an image in and out every 20 seconds with a duration of 1 second, against a black background (screensaver), in C# ?</p>
<p>(an image about 350x130px).</p>
<p>I need this for a simple screensaver that's going to run on some low level computers (xp).</p>
<p>Right now I'm using this method against a pictureBox, but it is too slow:</p>
<pre><code> private Image Lighter(Image imgLight, int level, int nRed, int nGreen, int nBlue)
{
Graphics graphics = Graphics.FromImage(imgLight);
int conversion = (5 * (level - 50));
Pen pLight = new Pen(Color.FromArgb(conversion, nRed,
nGreen, nBlue), imgLight.Width * 2);
graphics.DrawLine(pLight, -1, -1, imgLight.Width, imgLight.Height);
graphics.Save();
graphics.Dispose();
return imgLight;
}
</code></pre>
http://stackoverflow.com/questions/1826255/is-pia-embedding-broken-in-net-4-0-beta-210Is PIA embedding broken in .NET 4.0 beta 2?Jon Skeet2009-12-01T13:41:27Z2009-12-01T22:10:36Z
<p>A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to <code>Microsoft.Office.Interop.Word</code> to be embedded (set the "Embed Interop Types" = true in the reference properties). These worked fine, and I haven't run them for a while... until today.</p>
<p>Of course, now I'm running under beta 2 of both Visual Studio 2010 and .NET 4.0 - and it seems to be somewhat broken.</p>
<p>Here's the code in question (just dummy example code):</p>
<pre><code>using Microsoft.Office.Interop.Word;
class WordImprovement1
{
static void Main()
{
Application app = new Application { Visible = true };
app.Documents.Add();
Document doc = app.ActiveDocument;
Paragraph para = doc.Paragraphs.Add();
para.Range.Text = "Thank goodness for C# 4";
object filename = "demo.doc";
object format = WdSaveFormat.wdFormatDocument97;
doc.SaveAs(FileName: ref filename, FileFormat: ref format);
doc.Close();
app.Quit();
}
}
</code></pre>
<p>Here's the exception I get <em>most</em> of the time, when "Embed Interop Types" is set to "true" or I link with "/l" on the command line:</p>
<pre><code>System.MissingMethodException: Method not found:
'Void Microsoft.Office.Interop.Word._Application.set_Visible(Boolean)'.
at WordImprovement1.Main()
</code></pre>
<p>Very occasionally, it works - which is even more bizarre.</p>
<p>If I set "Embed Interop Types" to "false" (or use /r on the command line instead of /l) it all works fine.</p>
<p>If I remove the "Visible = true" property setter it works too... but I <em>know</em> that property's there... it's even suggested by IntelliSense!</p>
<p>While I haven't done exhaustive testing on multiple boxes, I <em>can</em> confirm that my netbook (running Windows 7 instead of Vista, but still .NET 4.0 beta 2) sees the same problem.</p>
<p>Any suggestions as to whether it's me that's broken or .NET 4.0 beta 2?</p>
http://stackoverflow.com/questions/1823451/how-to-iterate-through-array-in-c-across-multiple-calls0How to Iterate Through Array in C# Across Multiple CallsByron Ross2009-12-01T01:15:14Z2009-12-01T01:25:21Z
<p>Hi Guys, </p>
<p>We have an application where we need to de-serialize some data from one stream into multiple objects. </p>
<p>The Data array represents a number of messages of variable length packed together. There are no message delimiting codes in the stream. </p>
<p>We want to do something like:</p>
<pre><code>void Decode(byte[] Data)
{
Object0.ExtractMessage(Data);
Object1.ExtractMessage(Data);
Object2.ExtractMessage(Data);
...
}
</code></pre>
<p>where each ProcessData call knows where to start in the array. Ideally we'd do this without passing a <code>DataIx</code> reference in.</p>
<p>To do this in C++ we'd just hand around a pointer into the array, and each ProcessData function would increment it as required. </p>
<p>Each object class knows how its own messages are serialized and can be relied upon (in C++) to return the pointer at the beginning of the next message in the stream. </p>
<p>Is there some inbuilt mechanism we can use to do this (without going <code>unsafe</code>)? The operation is high frequency (~10kps) and very lightweight. We also don't want to go copying or trimming the array. </p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/258988/will-the-dynamic-keyword-in-c4-support-extension-methods6Will the dynamic keyword in C#4 support extension methods?Motti2008-11-03T15:28:58Z2009-11-30T22:39:49Z
<p>I'm <a href="http://channel9.msdn.com/shows/Going+Deep/Inside-C-40-dynamic-type-optional-parameters-more-COM-friendly/" rel="nofollow">listening to a talk</a> about <strong>C#4</strong>'s <code>dynamic</code> keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?</p>
<pre><code>public static class StrExtension {
public static string twice(this string str) { return str + str; }
}
...
dynamic x = "Yo";
x.twice(); // will this work?
</code></pre>
http://stackoverflow.com/questions/1781058/c-4-0-why-methodbag-when-theres-expandoobject3C# 4.0: Why MethodBag when there's ExpandoObject?stimpy772009-11-23T04:12:18Z2009-11-30T05:25:50Z
<p>I don't understand, why use dynamic MethodBags when I can use ExpandoObject? What am I missing here?</p>
http://stackoverflow.com/questions/1187423/anders-hejlsbergs-c-4-0-repl7Anders Hejlsberg's C# 4.0 REPLRichard J. Terrell2009-07-27T10:15:23Z2009-11-26T10:04:25Z
<p>During the last 10 minutes of Ander's talk <a href="http://channel9.msdn.com/pdc2008/tl16/" rel="nofollow">The Future of C#</a> he demonstrates a really cool C# Read-Eval-Print loop which would be a tremendous help in learning the language.</p>
<p>Several .NET4 related downloads are already available: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&displaylang=en" rel="nofollow">Visual Studio 2010 and .NET Framework 4.0 CTP</a>, <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&displaylang=en" rel="nofollow">Visual Studio 2010 and .NET Framework 4 Training Kit</a>. Do you know what happened to this REPL? Is it somewhere hidden among examples?</p>
<p><em>I know about mono repl. Please, no alternative solutions.</em></p>
http://stackoverflow.com/questions/1755572/ironpython-scriptruntime-equivalent-to-cpython-pythonpath0IronPython ScriptRuntime equivalent to CPython PYTHONPATHRodrigo Strauss2009-11-18T12:10:08Z2009-11-18T15:33:19Z
<p>The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program.</p>
<pre><code>import ConfigParser
</code></pre>
<p>C# code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
namespace CSharpDynamic
{
class Program
{
static int Main(string[] args)
{
ScriptRuntime python = Python.CreateRuntime();
dynamic dynamicIni =
python.UseFile(@"c:\test\WebCast\DynamicIni.py");
return 0;
}
}
}
</code></pre>
<p>CPython uses PYTHONPATH environment variable. How do I configure this in IronPython when using ScriptRuntime?</p>
http://stackoverflow.com/questions/1756311/creating-a-label-designer-in-c-sharp0Creating a 'label designer' in C SharpIan2009-11-18T14:19:36Z2009-11-18T14:19:36Z
<p>Hi, I'm trying to create a fairly simple label printer to complement the services offered on our website (processing PayPal payments using IPN and outputting a CSV file containing customisable transaction information). </p>
<p>I've got the printer module mostly sorted, but I wanted users of the software to be able to adjust the positioning of pieces of information, similar to the P-Touch software provided by Brother. </p>
<p>The process consists of loading in a CSV file, with various column headers. You should then be able to move the column headers about the layout - whitespace in the middle of the form window, which then, ideally, would snap to an alignment grid. </p>
<p>After that the user can select print preview, and print the labels according to the different label sizes available, where the data source is the CSV file. </p>
<p>My primary issue is the "label designer", and I have no idea where to start (a googling term would almost be enough!) </p>
<p>Using Visual Express 2010 beta and C Sharp.</p>
<p>TIA.</p>
http://stackoverflow.com/questions/1753751/cannot-understand-emgucv-neural-network-library0Cannot understand EmguCV neural network library.ranzan2009-11-18T05:04:29Z2009-11-18T05:08:33Z
<p>EmguCV provides a platform to train machine.i m wantin to using it trough ANN_MLP class. but i found it difficult to understand the parametes and variables of that class. please suggest me any link or tutorial on that. i ll be very thankful.</p>
http://stackoverflow.com/questions/1740013/training-the-neural-network-using-emgucv0Training the Neural Network using EmguCV?ranzan2009-11-16T04:14:41Z2009-11-16T04:14:41Z
<p>i m trying to do a project in image processing. I found the tutorial from <a href="http://www.emgu.com/wiki/index.php/ANN%5FMLP%5F%28Neural%5FNetwork%29%5Fin%5FCSharp" rel="nofollow">here</a> using EmguCV.but i could not understand that. how the NN be trained using that library? i ll be very thankful...</p>
http://stackoverflow.com/questions/1736986/i-cant-understand-the-following-code1i cant understand the following code..ranzan2009-11-15T08:26:35Z2009-11-15T08:32:58Z
<pre><code>Matrix<float> trainData2 = trainData.GetRows(intVar >> 1, intVar, 1);
</code></pre>
<p>intVar is integer type...
please help me to understand this code.</p>
http://stackoverflow.com/questions/245607/how-is-generic-covariance-contra-variance-implemented-in-c-4-04How is Generic Covariance & Contra-variance Implemented in C# 4.0?Morgan Cheng2008-10-29T02:27:19Z2009-11-13T08:14:35Z
<p>I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, <code>List<string></code> can be assigned to <code>List<object></code>. How could that be?</p>
<p>In Jon Skeet's book <strong><em>C# in Depth</em></strong>, it is explained why C# generics doesn't support covariance and contra-variance. It is mainly for writing secure code. Now, C# 4.0 changed to support them. Would it bring chaos?</p>
<p>Anybody know the details about C# 4.0 can give some explanation?</p>
http://stackoverflow.com/questions/1723875/can-method-parameters-be-dynamic-in-c1Can method parameters be dynamic in C#Skipperkongen2009-11-12T17:16:28Z2009-11-12T21:28:14Z
<p>In c# 4.0, are dynamic method parameters possible, like in the following code?</p>
<pre><code>public string MakeItQuack(dynamic duck)
{
string quack = duck.Quack();
return quack;
}
</code></pre>
<p>I've many cool examples of the dynamic keyword in C# 4.0, but not like above. This question is of course inspired by how python works.</p>
http://stackoverflow.com/questions/1653046/what-are-the-true-benefits-of-expandoobject5What are the true benefits of ExpandoObject?Reed Copsey2009-10-31T01:09:42Z2009-11-12T19:28:41Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.dynamic.expandoobject%28VS.100%29.aspx" rel="nofollow">ExpandoObject</a> class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime.</p>
<p>Are there any advantages to this over using a <a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow"><code>Dictionary<string,object></code></a>, or really even a <a href="http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx" rel="nofollow">Hashtable</a>? As far as I can tell, this is nothing but a hash table that you can access with slightly more succinct syntax.</p>
<p>For example, why is this:</p>
<pre><code>dynamic obj = new ExpandoObject();
obj.MyInt = 3;
obj.MyString = "Foo";
Console.WriteLine(obj.MyString);
</code></pre>
<p>Really better, or substantially different, than:</p>
<pre><code>var obj = new Dictionary<string, object>();
obj["MyInt"] = 3;
obj["MyString"] = "Foo";
Console.WriteLine(obj["MyString"]);
</code></pre>
<p>What <strong>real</strong> advantages are gained by using ExpandoObject instead of just using an arbitrary dictionary type, other than not being obvious that you're using a type that's going to be determined at runtime.</p>
http://stackoverflow.com/questions/247621/what-are-the-correct-version-numbers-for-c53What are the correct version numbers for C#?Jon Skeet2008-10-29T17:09:40Z2009-11-12T16:56:01Z
<p>What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5?</p>
<p>[This question is primarily to aid those who are searching for an answer using an incorrect version number, e.g. "C# 3.5". At the time of this writing, there are several questions tagged with "c#3.5". I'm shortly going to correct this, as recommended by the answer to this question about terminology. The hope is that anyone failing to find an answer with the wrong version number will find <em>this</em> answer and then search again with the right version number.]</p>
<p>EDIT: I've now retagged all of the questions marked "c#3.5" to "c#3.0" and "c#4" to "c#4.0" (excluding this one, of course). If those of us who care about this could try to keep an eye out for new questions with those tags, that would be handy :)</p>
http://stackoverflow.com/questions/1673977/net-4-profiler0.NET 4 Profiler?DrJokepu2009-11-04T14:11:05Z2009-11-11T16:12:09Z
<p>Does anyone know of a profiler that works with .NET 4 (beta 2)? I normally use the EQATEC profiler but it doesn't seem to be working with .NET 4 executables.</p>
http://stackoverflow.com/questions/1710902/unmodifiable-lists-in-c1Unmodifiable lists in C#Alex Marshall2009-11-10T20:17:57Z2009-11-10T20:29:17Z
<p>In Java, one can use the Collections#unmodifiableList() method to create an unmodifiable list from an existing List object. Is there any counterpart in C# ? I'm new to the language and haven't been able to find anything like this in the MSDN docs.</p>
http://stackoverflow.com/questions/1696351/how-to-learn-programming-for-web-development-using-microsoft-technologies0How to learn programming for Web Development using microsoft technologies Gupta Ji 2009-11-08T12:59:17Z2009-11-08T17:21:37Z
<p>i am programmer but not good i am working with c# , <a href="http://asp.net" rel="nofollow">asp.net</a> and MVC too. so how i can improve our coding skill for develop a better web apps. means how can i learn it.</p>
http://stackoverflow.com/questions/1693899/migrate-from-vs2005-to-vs-2010-directly0Migrate from VS2005 to VS 2010 directlyeastender2009-11-07T18:03:06Z2009-11-07T18:21:27Z
<p>Hi,<br>
Our project is currently developed in C#2 , VS2005.
We were thinking of migrating to VS2008 and C#3.</p>
<p>Do you think it might be a better idea to move directly to VS2010 instead?
We do not plan to release the new version till the end of next year.</p>
<blockquote>
<p>Is there any advantage in moving from vs05 to vs08 and then moving to vs10?</p>
</blockquote>
<p>thanks!</p>
http://stackoverflow.com/questions/1692467/book-to-learn-about-the-new-features-in-c-net-4-01Book to learn about the new features in C#/.NET 4.0?Moayad Mardini2009-11-07T08:52:18Z2009-11-07T09:15:18Z
<p>I'm looking for an in-depth book that talks about, and only about, the new features in version 4.0 of .NET and C#.</p>
<p>There are some good books, that are/will be published and talk about C# 4.0, but cover all the features of the language and the platform, even the old ones, and I don't want to waste time in scanning through a book of these and pick only the new sections. Any titles?</p>
http://stackoverflow.com/questions/1220913/unauthorizedaccessexception-on-memorymappedfile-in-c-41UnauthorizedAccessException on MemoryMappedFile in C# 4.Kevin Nisbet2009-08-03T06:41:00Z2009-11-06T17:05:37Z
<p>Hey,</p>
<p>I wanted to play around with using a MemoryMappedFile to access an existing binary file. If this even at all possible or am I a crazy person?</p>
<p>The idea would be to map the existing binary file directly to memory for some preferably higher-speed operations. Or to atleast see how these things worked.</p>
<pre><code> using System.IO.MemoryMappedFiles;
System.IO.FileInfo fi = new System.IO.FileInfo(@"C:\testparsercap.pcap");
MemoryMappedFileSecurity sec = new MemoryMappedFileSecurity();
System.IO.FileStream file = fi.Open(System.IO.FileMode.Open, System.IO.FileAccess.ReadWrite, System.IO.FileShare.ReadWrite);
MemoryMappedFile mf = MemoryMappedFile.CreateFromFile(file, "testpcap", fi.Length, MemoryMappedFileAccess.Read, sec, System.IO.HandleInheritability.Inheritable, true);
MemoryMappedViewAccessor FileMapView = mf.CreateViewAccessor();
PcapHeader head = new PcapHeader();
FileMapView.Read<PcapHeader>(0, out head);
</code></pre>
<p>I get System.UnauthorizedAccessException was unhandled (Message=Access to the path is denied.) on the mf.CreateViewAccessor() line.</p>
<p>I don't think it's file-permissions, since I'm running as a nice insecure administrator user, and there aren't any other programs open that might have a read-lock on the file. This is on Vista with UAC disabled.</p>
<p>If it's simply not possible and I missed something in the documentation, please let me know. I could barely find anything at all referencing this feature of .net 4.0</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1660806/dynamically-add-checkboxlist-into-placeholder-and-get-the-checked-value-of-the-ch0Dynamically add checkboxlist into placeholder and get the checked value of the checkboxlistunknown (google)2009-11-02T11:44:18Z2009-11-05T07:35:00Z
<p>Hi,</p>
<p>I am creating an admin Page, in which checkboxlist(User list from DB)is to be created dynamically and its the checked users value is retrieved.</p>
<p>There are different types of users, so it is distinguised groupwise.</p>
<p>Now first a panel is defined, the checkboxlist is created dynamically and placed inside the panel, then the panel is placed inside a Placeholder.</p>
<p>What Iam doing here is placing the checkboxlist inside the panel, then the panel inside the placeholder. So the values of the Checkboxlist is not retrieved, due to the panel it doesnt get the checkboxlist and it doesn't loop through the Checkboxlist.</p>
<p>What I have done is.</p>
<p><p></p>
<pre><code> private void AddControl(string pUserGrp, int pUserGrp_Id, int pName)
{
CheckBoxList chkList = new CheckBoxList();
CheckBox chk = new CheckBox();
User us = new User();
us.OrderBy = "Order By User_Name";
us.WhereClause = "Where UserRole_Id = " + pUserGrp_Id ;
chkList.ID = "ChkUser" + pName ;
chkList.AutoPostBack = true;
chkList.Attributes.Add("onClick", "getVal(ChkUser" + pName + ");");
chkList.RepeatColumns = 6;
chkList.DataSource = us.GetUserDS();
chkList.DataTextField = "User_Name";
chkList.DataValueField = "User_Id";
chkList.DataBind();
chkList.Attributes.Add("onClick", "getVal(this);");
Panel pUser = new Panel();
if (pUserGrp != "")
{
pUser.GroupingText = pUserGrp ;
chk.Text = pUserGrp;
}
else
{
pUser.GroupingText = "Non Assigned Group";
chk.Text = "Non Assigned group";
}
pUser.Controls.Add(chk);
pUser.Controls.Add(chkList);
Place.Controls.Add(pUser);
}
private void setChecked(int pPageGroupId)
{
ArrayList arr = new ArrayList();
PageMaster obj = new PageMaster();
obj.WhereClause = " Where PageGroup_Id = " + pPageGroupId;
arr = obj.GetPageGroupUserRights(null);
CheckBoxList chkList = (CheckBoxList)Place.FindControl("ChkUser");
if (chkList != null)
{
for (int i = 0; i < chkList.Items.Count; i++)
{
if (arr.Count > 0)
{
int ii = 0;
while (ii < arr.Count)
{
PageMaster oCand = (PageMaster)arr[ii];
if (oCand.User_Name == chkList.Items[i].Text)
{
if (!chkList.Items[i].Selected)
{
chkList.Items[i].Selected = true;
}
}
ii++;
oCand = null;
}
}
}
}
}
public string GetListCheckBoxText()
{
StringBuilder sbtext = new StringBuilder();
foreach (Control c in Place.Controls)
{
if (c.GetType().Name == "CheckBoxList")
{
CheckBoxList cbx1 = (CheckBoxList)c;
foreach (ListItem li in cbx1.Items)
{
if (li.Selected == true)
{
sbtext.Append(",");
sbtext.Append(li.Value);
}
else
{
sbtext.Append(li.Value);
}
}
}
}
return sbtext.ToString(); }
</code></pre>
<p><p></p>
<p>It doesnt get through the Checkboxlist control in the setChecked(), also doesnt loop through the GetListCheckBoxTest().</p>
<p>Anyone can plz help me.</p>
<p>Regards</p>
http://stackoverflow.com/questions/1662764/c-4-0-methods-on-the-fly3C# 4.0, Methods on the fly?Trent2009-11-02T18:06:00Z2009-11-02T22:30:55Z
<p>With the introduction of things like duck typing, I would love it if I compose object methods on the fly, besides extension methods. Anybody know if this is possible? I know that MS is worried about composing framework on the fly, but they seem to be dipping their toes in the water.</p>
<p>Update: Thanks to Pavel for clarifying. For example, say I return a new dynamic object from LINQ and would like to add some methods to it on the fly.</p>
http://stackoverflow.com/questions/1502858/code-contracts-in-net-4-0-no-joy-for-non-nullable-reference-types-fans4Code Contracts in .NET 4.0, no joy for non-nullable reference types fans?RobSullivan2009-10-01T09:18:51Z2009-11-02T03:08:01Z
<p>I've been playing with Code Contracts on VS2008 (<a href="http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx</a>).<br />
They surely are nice and provide a solid alternative to if-then-throw checks inside methods.</p>
<p>Nonetheless I've been hoping that they could satisfy the need that I strongly feel for non-nullable reference types.<br />
Alas, from what I could see this doesn't seem to be the case.<br />
This is what I understood:</p>
<ul>
<li><p>Something like this will still cause issues at runtime:<br />
<code>
MyClass a = null;<br />
a.ToString();
</code> </p></li>
<li><p>I still have to explicitly write checks, even if in a more concise and streamlined way.</p></li>
<li><p>Unless you use VS Team System you can only use code contracts to check things at runtime, no benefits at compile time.<br />
Meaning that you still have to handle things when something goes wrong.<br />
Not much different from handling a simple exception.</p></li>
<li><p>Even with VSTS static analysis isn't as a good as the one done at runtime.<br />
This is perfectly understandable, still it's another sign that this feature is meant for runtime usage.</p></li>
</ul>
<p>Please correct me if I'm wrong but from what I see there's no way Code Contracts can make my life easier, and my programs more robust, like non-nullable reference types would. </p>
<p>Don't get me wrong, I don't dislike code contracts.<br />
They are a very nice enhancement to the whole framework.<br />
It's just that if this doesn't fill the gap that C# leaves by not having non-nullable reference types, at this point I'm afraid that nothing will.<br />
What do you think?</p>