Tagged Questions
The partial-methods tag has no wiki summary.
13
votes
7answers
315 views
C# Why can partial methods use ref, but not out?
Pretty straight forward. MSDN states that you can use ref, but not out for partial methods. I'm just curious as to the why? It was my understanding that when code is compiled, the partials are merged, ...
10
votes
6answers
2k views
How are partial methods used in C# 3.0?
I have read about partial methods in the latest C# language specification, so I understand the principles, but I'm wondering how people are actually using them. Is there a particular design pattern ...
4
votes
2answers
361 views
How to add a partial method without an implementation using CodeDom
internal List<CodeMemberMethod> createEventHooks()
{
string[] eventNames = new string[] { "OnUpdate", "OnInsert", "OnDelete", "OnSelect", "OnSelectAll" };
...
4
votes
2answers
730 views
How to code the partial extensions that Linq to SQL autogenerates?
I made a class from Linq to SQL Clasees with VS 2008 SP1 Framework 3.5 SP1, in this case I extended the partial
partial void UpdateMyTable(MyTable instance){
// Business logic
// Validation ...
2
votes
2answers
344 views
Workaround for VB.NET partial method using CodeDom?
I know CodeDom doesn't support partial methods, but is there a workaround? I found a workaround for C#, but I need one for VB.NET. Thanks.
1
vote
1answer
36 views
How do I provide partial method as an optional Action
I am migrating some code and have nicely formatted Look-up Tables but they have to be converted into archaic structures for use because of backward compatibility.
I have a GetLookupTable() method ...
1
vote
4answers
192 views
Why you need partial methods in c#? Can events be used to achieve the same goal?
I was reading the book "Apress Pro LINQ: Language Integrated Query in C#" and I came across partial methods, but I really don't understand what is the need for them.
I think the examples in the book ...
0
votes
1answer
41 views
is it possible to update values on changed event using Entity Frameworks partial methods
I was wondering how to change input values when using the Entity Framework. Till now I'm using selfmade custom classes which I transform to entity classes. I think I'm doubling the work i have to do. ...